@FunctionalInterface
public static interface NettyPipelinedConnection.Writer
The order in which write()
is invoked is the order in which the items will be written on the
connection, so, this can be used to make decisions based on ordering, if required.
write()
will never be invoked concurrently. Any state only visible to this method over multiple
invocations can assume memory visibility.Modifier and Type | Method and Description |
---|---|
Completable |
write()
Writes request associated with this writer.
|
Completable write()
Completable
for the write.