public static enum RSocketOutboundGateway.Command extends Enum<RSocketOutboundGateway.Command>
| Enum Constant and Description |
|---|
fireAndForget
Perform
fireAndForget. |
requestResponse
Perform
requestResponse. |
requestStreamOrChannel
Perform
requestStream or
requestChannel depending on whether
the request input consists of a single or multiple payloads. |
| Modifier and Type | Method and Description |
|---|---|
static RSocketOutboundGateway.Command |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RSocketOutboundGateway.Command[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RSocketOutboundGateway.Command fireAndForget
fireAndForget.RSocketRequester.ResponseSpec#send()public static final RSocketOutboundGateway.Command requestResponse
requestResponse.RSocketRequester.ResponseSpec#retrieveMonopublic static final RSocketOutboundGateway.Command requestStreamOrChannel
requestStream or
requestChannel depending on whether
the request input consists of a single or multiple payloads.RSocketRequester.ResponseSpec#retrieveFluxpublic static RSocketOutboundGateway.Command[] values()
for (RSocketOutboundGateway.Command c : RSocketOutboundGateway.Command.values()) System.out.println(c);
public static RSocketOutboundGateway.Command valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null