Both createNonBlockingByteArrayParser() and createNonBlockingByteBufferParser() in TokenStreamFactory have the same type bound for the return type:
P extends JsonParser & ByteArrayFeeder
I'd expect the type for createNonBlockingByteBufferParser() to be
P extends JsonParser & ByteBufferFeeder.
Is this a copy-paste error or am I missing something?
Both createNonBlockingByteArrayParser() and createNonBlockingByteBufferParser() in TokenStreamFactory have the same type bound for the return type:
P extends JsonParser & ByteArrayFeederI'd expect the type for createNonBlockingByteBufferParser() to be
P extends JsonParser & ByteBufferFeeder.Is this a copy-paste error or am I missing something?