Uses of Interface
io.netty5.util.Send
-
Packages that use Send Package Description io.netty5.buffer Abstraction of a byte buffer - the fundamental data structure to represent a low-level binary and text message.io.netty5.buffer.api IncubatingBuffer
API, as a proposed alternative toByteBuf
.io.netty5.buffer.api.internal Internal implementation details that can be shared among Buffer implementations.io.netty5.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty5.handler.codec.dns DNS codec.io.netty5.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty5.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty5.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty5.handler.ssl io.netty5.util Utility classes used across multiple packages.io.netty5.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
-
Uses of Send in io.netty5.buffer
Constructors in io.netty5.buffer with parameters of type Send Constructor Description BufferInputStream(Send<Buffer> buffer)
Creates a new stream which reads data from the specifiedbuffer
starting at the currentreaderOffset
and ending at the currentwriterOffset
. -
Uses of Send in io.netty5.buffer.api
Methods in io.netty5.buffer.api that return Send Modifier and Type Method Description Send<T>
BufferHolder. send()
Send<Buffer>
BufferStub. send()
Methods in io.netty5.buffer.api with parameters of type Send Modifier and Type Method Description default CompositeBuffer
BufferAllocator. compose(Send<Buffer> send)
Compose the send of a buffer and present them as a single buffer.CompositeBuffer
CompositeBuffer. extendWith(Send<Buffer> extension)
Extend this composite buffer with the given extension buffer.void
BufferRef. replace(Send<Buffer> send)
Replace the underlying referenced buffer with the given buffer.protected void
BufferHolder. replaceBuffer(Send<Buffer> send)
Replace the underlying referenced buffer with the given buffer.protected void
BufferHolder. replaceBufferVolatile(Send<Buffer> send)
Replace the underlying referenced buffer with the given buffer.Method parameters in io.netty5.buffer.api with type arguments of type Send Modifier and Type Method Description default CompositeBuffer
BufferAllocator. compose(Iterable<Send<Buffer>> sends)
Compose the given sequence of sends of buffers and present them as a single buffer.Constructors in io.netty5.buffer.api with parameters of type Send Constructor Description BufferHolder(Send<Buffer> send)
BufferRef(Send<Buffer> send)
Create a reference that holds the exclusive ownership of the sent buffer. -
Uses of Send in io.netty5.buffer.api.internal
Classes in io.netty5.buffer.api.internal that implement Send Modifier and Type Class Description class
SendFromOwned<I extends Resource<I>,T extends ResourceSupport<I,T>>
Methods in io.netty5.buffer.api.internal that return Send Modifier and Type Method Description Send<I>
ResourceSupport. send()
Send this Resource instance to another Thread, transferring the ownership to the recipient. -
Uses of Send in io.netty5.channel
Methods in io.netty5.channel that return Send Modifier and Type Method Description Send<T>
BufferAddressedEnvelope. send()
-
Uses of Send in io.netty5.handler.codec.dns
Methods in io.netty5.handler.codec.dns that return Send Modifier and Type Method Description Send<DnsRawRecord>
DefaultDnsRawRecord. send()
Constructors in io.netty5.handler.codec.dns with parameters of type Send Constructor Description DefaultDnsRawRecord(String name, DnsRecordType type, int dnsClass, long timeToLive, Send<Buffer> content)
-
Uses of Send in io.netty5.handler.codec.http
Methods in io.netty5.handler.codec.http that return Send Modifier and Type Method Description Send<FullHttpRequest>
DefaultFullHttpRequest. send()
Send<FullHttpResponse>
DefaultFullHttpResponse. send()
Send<DefaultHttpContent>
DefaultHttpContent. send()
Send<DefaultLastHttpContent>
DefaultLastHttpContent. send()
Send<EmptyLastHttpContent>
EmptyLastHttpContent. send()
Send<HttpServerUpgradeHandler.UpgradeEvent>
HttpServerUpgradeHandler.UpgradeEvent. send()
Methods in io.netty5.handler.codec.http with parameters of type Send Modifier and Type Method Description void
HttpClientUpgradeHandler.UpgradeCodec. upgradeTo(ChannelHandlerContext ctx, Send<FullHttpResponse> upgradeResponse)
Performs an HTTP protocol upgrade from the source codec. -
Uses of Send in io.netty5.handler.codec.http.websocketx
Constructors in io.netty5.handler.codec.http.websocketx with parameters of type Send Constructor Description PongWebSocketFrame(Send<Buffer> binaryData)
Creates a new pong frame with the specified binary data.WebSocketFrame(Send<Buffer> binaryData)
-
Uses of Send in io.netty5.handler.codec.http2
Methods in io.netty5.handler.codec.http2 that return Send Modifier and Type Method Description Send<Http2DataFrame>
DefaultHttp2DataFrame. send()
Methods in io.netty5.handler.codec.http2 with parameters of type Send Modifier and Type Method Description void
Http2ClientUpgradeCodec. upgradeTo(ChannelHandlerContext ctx, Send<FullHttpResponse> upgradeResponse)
Constructors in io.netty5.handler.codec.http2 with parameters of type Send Constructor Description DefaultHttp2DataFrame(Send<Buffer> content)
Equivalent tonew DefaultHttp2DataFrame(content, false)
.DefaultHttp2DataFrame(Send<Buffer> content, boolean endStream)
Equivalent tonew DefaultHttp2DataFrame(content, endStream, 0)
.DefaultHttp2DataFrame(Send<Buffer> content, boolean endStream, int padding)
Construct a new data message.DefaultHttp2GoAwayFrame(long errorCode, Send<Buffer> content)
Construct a new GOAWAY message.DefaultHttp2GoAwayFrame(Http2Error error, Send<Buffer> content)
-
Uses of Send in io.netty5.handler.ssl
Methods in io.netty5.handler.ssl that return Send Modifier and Type Method Description Send<PemX509Certificate>
PemX509Certificate. send()
-
Uses of Send in io.netty5.util
Methods in io.netty5.util that return Send Modifier and Type Method Description default <R extends Resource<R>>
Send<R>Send. map(Class<R> type, Function<T,R> mapper)
Apply a mapping function to the object being sent.Send<T>
Resource. send()
Send this object instance to another Thread, transferring the ownership to the recipient.static <T extends Resource<T>>
Send<T>Send. sending(Class<T> concreteObjectType, Supplier<? extends T> supplier)
-
Uses of Send in io.netty5.util.internal
Classes in io.netty5.util.internal that implement Send Modifier and Type Class Description class
SendFromSupplier<T extends Resource<T>>
-