protected static final class HttpOperations.PostHeadersNettyOutbound extends AtomicBoolean implements NettyOutbound, Consumer<Throwable>, Runnable
Constructor and Description |
---|
PostHeadersNettyOutbound(Mono<Void> source,
HttpOperations<?,?> parent,
ByteBuf msg) |
Modifier and Type | Method and Description |
---|---|
void |
accept(Throwable throwable) |
ByteBufAllocator |
alloc()
Returns the assigned
ByteBufAllocator . |
void |
run() |
NettyOutbound |
send(Publisher<? extends ByteBuf> dataStream,
Predicate<ByteBuf> predicate)
Sends data to the peer, listens for any error on write and closes on terminal signal
(complete|error).
|
NettyOutbound |
sendObject(Object message)
Sends data to the peer, listens for any error on write and closes on terminal signal
(complete|error).
|
NettyOutbound |
sendObject(Publisher<?> dataStream,
Predicate<Object> predicate)
Sends an object through Netty pipeline.
|
<S> NettyOutbound |
sendUsing(Callable<? extends S> sourceInput,
BiFunction<? super Connection,? super S,?> mappedInput,
Consumer<? super S> sourceCleanup)
Binds a send to a starting/cleanup lifecycle
|
Mono<Void> |
then()
Obtains a
Mono of pending outbound(s) write completion. |
NettyOutbound |
withConnection(Consumer<? super Connection> withConnection)
Call the passed callback with a
Connection to operate on the underlying
Channel state. |
compareAndSet, get, getAndSet, lazySet, set, toString, weakCompareAndSet
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
neverComplete, send, sendByteArray, sendFile, sendFile, sendFileChunked, sendGroups, sendObject, sendString, sendString, subscribe, then, then
public PostHeadersNettyOutbound(Mono<Void> source, HttpOperations<?,?> parent, @Nullable ByteBuf msg)
public void accept(Throwable throwable)
public Mono<Void> then()
NettyOutbound
Mono
of pending outbound(s) write completion.then
in interface NettyOutbound
Mono
of pending outbound(s) write completionpublic ByteBufAllocator alloc()
NettyOutbound
ByteBufAllocator
.alloc
in interface NettyOutbound
ByteBufAllocator
public NettyOutbound send(Publisher<? extends ByteBuf> dataStream, Predicate<ByteBuf> predicate)
NettyOutbound
A new NettyOutbound
type (or the same) for typed send
sequences.
Note: Nesting any send* method is not supported.
send
in interface NettyOutbound
dataStream
- the dataStream publishing OUT items to write on this channelpredicate
- that returns true if explicit flush operation is needed after that bufferNettyOutbound
to append further send. It will emit a complete
signal successful sequence write (e.g. after "flush") or any error during write.public NettyOutbound sendObject(Publisher<?> dataStream, Predicate<Object> predicate)
NettyOutbound
Publisher
, sends all signals,
flushing on complete by default. Write occur in FIFO sequence.
Note: Nesting any send* method is not supported.
sendObject
in interface NettyOutbound
dataStream
- the dataStream publishing items to write on this channel
or a simple pojo supported by configured Netty handlerspredicate
- that returns true if explicit flush operation is needed after that objectpublic NettyOutbound sendObject(Object message)
NettyOutbound
Note: Nesting any send* method is not supported.
sendObject
in interface NettyOutbound
message
- the object to publishMono
to signal successful sequence write (e.g. after "flush") or
any error during writepublic <S> NettyOutbound sendUsing(Callable<? extends S> sourceInput, BiFunction<? super Connection,? super S,?> mappedInput, Consumer<? super S> sourceCleanup)
NettyOutbound
Note: Nesting any send* method is not supported.
sendUsing
in interface NettyOutbound
S
- state typesourceInput
- state generatormappedInput
- input to sendsourceCleanup
- state cleanerNettyOutbound
public NettyOutbound withConnection(Consumer<? super Connection> withConnection)
NettyOutbound
Connection
to operate on the underlying
Channel
state.withConnection
in interface NettyOutbound
withConnection
- connection callbackConnection