Interface MutinyEmitter<T>
-
- Type Parameters:
T
- type of payload
- All Superinterfaces:
EmitterBehavior
- All Known Implementing Classes:
MutinyEmitterImpl
public interface MutinyEmitter<T> extends EmitterBehavior
Interface used to feed a channel from an imperative piece of code.Instances are injected using:
@Inject @Channel("my-channel") MutinyEmitter<String> emitter;
You can use an injected emitter to send either payloads or
Messages
.The name of the channel (given in the
Channel annotation
) indicates which channel is fed. It must match the name used in a method using@Incoming
or an outgoing channel configured in the application configuration.The
OnOverflow annotation
can be used to configure what to do if messages are sent using the `MutinyEmitter` when a downstream subscriber hasn't requested more messages.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <M extends Message<? extends T>>
voidsend(M msg)
Sends a message to the channel.io.smallrye.mutiny.Uni<Void>
send(T payload)
Sends a payload to the channel.void
sendAndAwait(T payload)
Sends a payload to the channel.io.smallrye.mutiny.subscription.Cancellable
sendAndForget(T payload)
Sends a payload to the channel without waiting for acknowledgement.-
Methods inherited from interface io.smallrye.reactive.messaging.EmitterBehavior
complete, error, hasRequests, isCancelled
-
-
-
-
Method Detail
-
send
io.smallrye.mutiny.Uni<Void> send(T payload)
Sends a payload to the channel.A
Message
object will be created to hold the payload and the returnedUni
can be subscribed to for triggering the send. When subscribed, anull
item will be passed to theUni
when theMessage
is acknowledged. If theMessage
is never acknowledged, then theUni
will never be completed.The
Message
will not be sent to the channel until theUni
has been subscribed to:emitter.send("a").subscribe().with(x -> { });
- Parameters:
payload
- the thing to send, must not benull
- Returns:
- the
Uni
, that requires subscription to send theMessage
. - Throws:
IllegalStateException
- if the channel has been cancelled or terminated or if an overflow strategy ofTHROW_EXCEPTION
orBUFFER
is configured and the emitter overflows.
-
sendAndAwait
void sendAndAwait(T payload)
Sends a payload to the channel.A
Message
object will be created to hold the payload.Execution will block waiting for the resulting
Message
to be acknowledged before returning.- Parameters:
payload
- the thing to send, must not benull
- Throws:
IllegalStateException
- if the channel has been cancelled or terminated or if an overflow strategy ofTHROW_EXCEPTION
orBUFFER
is configured and the emitter overflows.
-
sendAndForget
io.smallrye.mutiny.subscription.Cancellable sendAndForget(T payload)
Sends a payload to the channel without waiting for acknowledgement.A
Message
object will be created to hold the payload.- Parameters:
payload
- the thing to send, must not benull
- Returns:
- the
Cancellable
from the subscribedUni
. - Throws:
IllegalStateException
- if the channel has been cancelled or terminated or if an overflow strategy ofTHROW_EXCEPTION
orBUFFER
is configured and the emitter overflows.
-
send
<M extends Message<? extends T>> void send(M msg)
Sends a message to the channel.- Type Parameters:
M
- the Message type- Parameters:
msg
- the Message to send, must not benull
- Throws:
IllegalStateException
- if the channel has been cancelled or terminated or if an overflow strategy ofTHROW_EXCEPTION
orBUFFER
is configured and the emitter overflows.
-
-