File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/com/rabbitmq/client/impl/nio Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 34
34
*/
35
35
public class NioParams {
36
36
37
- static Function <? super NioContext , ? extends NioQueue > DEFAULT_WRITE_QUEUE_FACTORY =
37
+ static Function <NioContext , NioQueue > DEFAULT_WRITE_QUEUE_FACTORY =
38
38
ctx -> new BlockingQueueNioQueue (
39
39
new ArrayBlockingQueue <>(ctx .getNioParams ().getWriteQueueCapacity (), true ),
40
40
ctx .getNioParams ().getWriteEnqueuingTimeoutInMs ()
@@ -106,7 +106,7 @@ public class NioParams {
106
106
*
107
107
* @since 5.5.0
108
108
*/
109
- private Function <? super NioContext , ? extends NioQueue > writeQueueFactory =
109
+ private Function <NioContext , NioQueue > writeQueueFactory =
110
110
DEFAULT_WRITE_QUEUE_FACTORY ;
111
111
112
112
public NioParams () {
@@ -413,12 +413,12 @@ public ByteBufferFactory getByteBufferFactory() {
413
413
* @since 5.5.0
414
414
*/
415
415
public NioParams setWriteQueueFactory (
416
- Function <? super NioContext , ? extends NioQueue > writeQueueFactory ) {
416
+ Function <NioContext , NioQueue > writeQueueFactory ) {
417
417
this .writeQueueFactory = writeQueueFactory ;
418
418
return this ;
419
419
}
420
420
421
- public Function <? super NioContext , ? extends NioQueue > getWriteQueueFactory () {
421
+ public Function <NioContext , NioQueue > getWriteQueueFactory () {
422
422
return writeQueueFactory ;
423
423
}
424
424
}
You can’t perform that action at this time.
0 commit comments