File tree 1 file changed +4
-4
lines changed
src/main/java/com/rabbitmq/client/impl/nio
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 () {
@@ -417,12 +417,12 @@ public ByteBufferFactory getByteBufferFactory() {
417
417
* @since 5.5.0
418
418
*/
419
419
public NioParams setWriteQueueFactory (
420
- Function <? super NioContext , ? extends NioQueue > writeQueueFactory ) {
420
+ Function <NioContext , NioQueue > writeQueueFactory ) {
421
421
this .writeQueueFactory = writeQueueFactory ;
422
422
return this ;
423
423
}
424
424
425
- public Function <? super NioContext , ? extends NioQueue > getWriteQueueFactory () {
425
+ public Function <NioContext , NioQueue > getWriteQueueFactory () {
426
426
return writeQueueFactory ;
427
427
}
428
428
}
You can’t perform that action at this time.
0 commit comments