Uses of Interface
io.grpc.internal.WritableBuffer
-
Packages that use WritableBuffer Package Description io.grpc.internal Interfaces and implementations that are internal to gRPC.io.grpc.netty The main transport implementation based on Netty, for both the client and the server.io.grpc.servlet API that implements gRPC server as a servlet.io.grpc.servlet.jakarta API that implements gRPC server as a servlet. -
-
Uses of WritableBuffer in io.grpc.internal
Fields in io.grpc.internal declared as WritableBuffer Modifier and Type Field Description private WritableBuffer
MessageFramer. buffer
private WritableBuffer
MessageFramer.BufferChainOutputStream. current
Fields in io.grpc.internal with type parameters of type WritableBuffer Modifier and Type Field Description private java.util.List<WritableBuffer>
MessageFramer.BufferChainOutputStream. bufferList
Methods in io.grpc.internal that return WritableBuffer Modifier and Type Method Description WritableBuffer
WritableBufferAllocator. allocate(int capacityHint)
Request a newWritableBuffer
with the givencapacityHint
.Methods in io.grpc.internal with parameters of type WritableBuffer Modifier and Type Method Description void
AbstractClientStream. deliverFrame(WritableBuffer frame, boolean endOfStream, boolean flush, int numMessages)
void
AbstractServerStream. deliverFrame(WritableBuffer frame, boolean endOfStream, boolean flush, int numMessages)
void
MessageFramer.Sink. deliverFrame(WritableBuffer frame, boolean endOfStream, boolean flush, int numMessages)
Delivers a frame via the transport.void
AbstractClientStream.Sink. writeFrame(WritableBuffer frame, boolean endOfStream, boolean flush, int numMessages)
Sends an outbound frame to the remote end point.void
AbstractServerStream.Sink. writeFrame(WritableBuffer frame, boolean flush, int numMessages)
Sends an outbound frame to the remote end point. -
Uses of WritableBuffer in io.grpc.netty
Classes in io.grpc.netty that implement WritableBuffer Modifier and Type Class Description (package private) class
NettyWritableBuffer
TheWritableBuffer
used by the Netty transport.Methods in io.grpc.netty that return WritableBuffer Modifier and Type Method Description WritableBuffer
NettyWritableBufferAllocator. allocate(int capacityHint)
Methods in io.grpc.netty with parameters of type WritableBuffer Modifier and Type Method Description void
NettyClientStream.Sink. writeFrame(WritableBuffer frame, boolean endOfStream, boolean flush, int numMessages)
void
NettyServerStream.Sink. writeFrame(WritableBuffer frame, boolean flush, int numMessages)
private void
NettyClientStream.Sink. writeFrameInternal(WritableBuffer frame, boolean endOfStream, boolean flush, int numMessages)
-
Uses of WritableBuffer in io.grpc.servlet
Classes in io.grpc.servlet that implement WritableBuffer Modifier and Type Class Description private static class
ServletServerStream.ByteArrayWritableBuffer
Methods in io.grpc.servlet with parameters of type WritableBuffer Modifier and Type Method Description void
ServletServerStream.Sink. writeFrame(WritableBuffer frame, boolean flush, int numMessages)
-
Uses of WritableBuffer in io.grpc.servlet.jakarta
Classes in io.grpc.servlet.jakarta that implement WritableBuffer Modifier and Type Class Description private static class
ServletServerStream.ByteArrayWritableBuffer
Methods in io.grpc.servlet.jakarta with parameters of type WritableBuffer Modifier and Type Method Description void
ServletServerStream.Sink. writeFrame(WritableBuffer frame, boolean flush, int numMessages)
-