Toggle navigation
Home
java.util.Queue to java.util.concurrent.BlockingQueue
No. of Instances - 1
No. of Commits - 1
No. of Projects - {'atomix'}
Hierarchy/Composition: T_SUPER_R
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Update argument list (Method invocation)
poll
to
poll
Add or Remove Method invocation
mPackets.poll()
to
mPackets.poll(READ_TIMEOUT_MS,TimeUnit.MILLISECONDS)
mPackets.poll()
to
mPackets.poll(READ_TIMEOUT_MS,TimeUnit.MILLISECONDS)
mainQueue.poll()
to
mainQueue.take()
Cascading Type Change (Different)
ArrayDeque<>
to
ArrayBlockingQueue<>
PriorityQueue<>
to
PriorityBlockingQueue<>
Rename Method invocation
add
to
put
remove
to
take