Uses of Interface
io.fluxzero.sdk.tracking.handling.Request
Packages that use Request
-
Uses of Request in io.fluxzero.sdk
Methods in io.fluxzero.sdk with parameters of type RequestModifier and TypeMethodDescriptionstatic <R> CompletableFuture<R> Sends the given query and returns a future that will be completed with the query's result.static <R> CompletableFuture<R> Sends a query with given payload and metadata and returns a future that will be completed with the query's result.static <R> RFluxzero.queryAndWait(Request<R> query) Sends the given query and returns the query's result.static <R> RFluxzero.queryAndWait(Request<R> payload, Metadata metadata) Sends a query with given payload and metadata and returns the query's result.static <R> CompletableFuture<R> Fluxzero.sendCommand(Request<R> command) Sends the given command and returns a future that will be completed with the command's result.static <R> CompletableFuture<R> Fluxzero.sendCommand(Request<R> payload, Metadata metadata) Sends a command with given payload and metadata and returns a future that will be completed with the command's result.static <R> RFluxzero.sendCommandAndWait(Request<R> command) Sends the given command and returns the command's result.static <R> RFluxzero.sendCommandAndWait(Request<R> payload, Metadata metadata) Sends a command with given payload and metadata and returns a future that will be completed with the command's result. -
Uses of Request in io.fluxzero.sdk.publishing
Methods in io.fluxzero.sdk.publishing with parameters of type RequestModifier and TypeMethodDescription<R> CompletableFuture<R> Sends a typed request command and returns a future for the result.<R> CompletableFuture<R> Sends a typed request command with metadata and returns a future for the result.default <R> CompletableFuture<R> Sends aRequestmessage and returns a future with its typed response.default <R> CompletableFuture<R> Sends aRequestwith metadata and returns a future with its response.<R> CompletableFuture<R> Sends a typedRequestquery and returns a future representing the result.<R> CompletableFuture<R> Sends a typedRequestquery with additional metadata and returns a future with the result.<R> RCommandGateway.sendAndWait(Request<R> query) Sends a typed request command and waits for the result.<R> RCommandGateway.sendAndWait(Request<R> payload, Metadata metadata) Sends a typed request command with metadata and waits for the result.default <R> RGenericGateway.sendAndWait(Request<R> message) Sends aRequestand blocks until a response is received.default <R> RGenericGateway.sendAndWait(Request<R> payload, Metadata metadata) Sends aRequestwith metadata and blocks for a response.<R> RQueryGateway.sendAndWait(Request<R> query) Sends a typedRequestquery and waits for the result.<R> RQueryGateway.sendAndWait(Request<R> payload, Metadata metadata) Sends a typedRequestquery with metadata and waits for the result. -
Uses of Request in io.fluxzero.sdk.web
Methods in io.fluxzero.sdk.web with parameters of type RequestModifier and TypeMethodDescription<R> CompletionStage<R> DefaultSocketSession.sendRequest(Request<R> request, Duration timeout) default <R> CompletionStage<R> SocketSession.sendRequest(Request<R> request) Sends a request and returns aCompletionStagerepresenting the pending result.<R> CompletionStage<R> SocketSession.sendRequest(Request<R> request, Duration timeout) Sends a request over the WebSocket session with a specified timeout duration.