Toggle navigation
Home
java.util.concurrent.BlockingQueue to java.util.Queue
No. of Instances - 2
No. of Commits - 2
No. of Projects - {'infinispan'}
Hierarchy/Composition: R_SUPER_T
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Rename Method invocation
offer
to
add
put
to
add
take
to
remove
Add or Remove Method invocation
Queues.newArrayBlockingQueue((conf.getMaxLookupRequest() - conf.getConcurrentLookupRequest()))
to
Queues.newConcurrentLinkedQueue()
Cascading Type Change (Different)
ArrayBlockingQueue<>
to
ArrayDeque<>
ArrayBlockingQueue<>
to
ArrayDeque<>