Uses of Interface
com.iohao.net.framework.protocol.ResponseCollect
Packages that use ResponseCollect
Package
Description
Provides communication contracts and adapters used for request/response delivery, broadcasts, and
cross-service messaging within the framework runtime.
Provides protocol metadata and structures used to represent command routes, headers, and payload
conventions across the ionet framework.
Net-server bootstrap, routing, load-balancing, and connection coordination components.
-
Uses of ResponseCollect in com.iohao.net.framework.communication
Methods in com.iohao.net.framework.communication that return ResponseCollectModifier and TypeMethodDescriptiondefault ResponseCollectLogicCallCollectCommunicationDecorator.callCollect(CmdInfo cmdInfo) Synchronous collect-call with no payload.default ResponseCollectLogicCallCollectCommunicationDecorator.callCollect(CmdInfo cmdInfo, boolean data) Synchronous collect-call with boolean payload.default ResponseCollectLogicCallCollectCommunicationDecorator.callCollect(CmdInfo cmdInfo, byte[] data) Call all logic servers that handle the given command and collect their responses synchronously.default ResponseCollectLogicCallCollectCommunicationDecorator.callCollect(CmdInfo cmdInfo, int data) Synchronous collect-call with int payload.default ResponseCollectLogicCallCollectCommunicationDecorator.callCollect(CmdInfo cmdInfo, long data) Synchronous collect-call with long payload.default ResponseCollectLogicCallCollectCommunicationDecorator.callCollect(CmdInfo cmdInfo, Object data) Synchronous collect-call with Object payload.default ResponseCollectLogicCallCollectCommunicationDecorator.callCollect(CmdInfo cmdInfo, String data) Synchronous collect-call with String payload.default ResponseCollectLogicCallCollectCommunicationDecorator.callCollect(CmdInfo cmdInfo, List<?> dataList) Synchronous collect-call with List payload.default ResponseCollectLogicCallCollectCommunicationDecorator.callCollect(RequestMessage message) Synchronous collect-call using a pre-built request message.LogicCollectCommunication.callCollect(RequestMessage message) Synchronously call all matching logic servers and collect their responses.default ResponseCollectLogicCallCollectCommunicationDecorator.callCollectListBool(CmdInfo cmdInfo, List<Boolean> dataList) Synchronous collect-call with List<Boolean> payload.default ResponseCollectLogicCallCollectCommunicationDecorator.callCollectListInt(CmdInfo cmdInfo, List<Integer> dataList) Synchronous collect-call with List<Integer> payload.default ResponseCollectLogicCallCollectCommunicationDecorator.callCollectListLong(CmdInfo cmdInfo, List<Long> dataList) Synchronous collect-call with List<Long> payload.default ResponseCollectLogicCallCollectCommunicationDecorator.callCollectListString(CmdInfo cmdInfo, List<String> dataList) Synchronous collect-call with List<String> payload.Methods in com.iohao.net.framework.communication that return types with arguments of type ResponseCollectModifier and TypeMethodDescriptiondefault CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFuture(CmdInfo cmdInfo) Future-based collect-call with no payload.default CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFuture(CmdInfo cmdInfo, boolean data) Future-based collect-call with boolean payload.default CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFuture(CmdInfo cmdInfo, byte[] data) Call all logic servers that handle the given command and return a CompletableFuture for the aggregated response.default CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFuture(CmdInfo cmdInfo, int data) Future-based collect-call with int payload.default CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFuture(CmdInfo cmdInfo, long data) Future-based collect-call with long payload.default CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFuture(CmdInfo cmdInfo, Object data) Future-based collect-call with Object payload.default CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFuture(CmdInfo cmdInfo, String data) Future-based collect-call with String payload.default CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFuture(CmdInfo cmdInfo, List<?> dataList) Future-based collect-call with List payload.default CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFuture(RequestMessage message) Future-based collect-call using a pre-built request message.LogicCollectCommunication.callCollectFuture(RequestMessage message) Asynchronously call all matching logic servers and collect their responses.default CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFutureListBool(CmdInfo cmdInfo, List<Boolean> dataList) Future-based collect-call with List<Boolean> payload.default CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFutureListInt(CmdInfo cmdInfo, List<Integer> dataList) Future-based collect-call with List<Integer> payload.default CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFutureListLong(CmdInfo cmdInfo, List<Long> dataList) Future-based collect-call with List<Long> payload.default CompletableFuture<ResponseCollect> LogicCallCollectCommunicationDecorator.callCollectFutureListString(CmdInfo cmdInfo, List<String> dataList) Future-based collect-call with List<String> payload.Method parameters in com.iohao.net.framework.communication with type arguments of type ResponseCollectModifier and TypeMethodDescriptiondefault voidLogicCallCollectCommunicationDecorator.callCollectAsync(CmdInfo cmdInfo, boolean data, Consumer<ResponseCollect> action) Async collect-call with boolean payload.default voidLogicCallCollectCommunicationDecorator.callCollectAsync(CmdInfo cmdInfo, byte[] data, Consumer<ResponseCollect> action) Call all logic servers asynchronously, invoking the callback with the aggregated response.default voidLogicCallCollectCommunicationDecorator.callCollectAsync(CmdInfo cmdInfo, int data, Consumer<ResponseCollect> action) Async collect-call with int payload.default voidLogicCallCollectCommunicationDecorator.callCollectAsync(CmdInfo cmdInfo, long data, Consumer<ResponseCollect> action) Async collect-call with long payload.default voidLogicCallCollectCommunicationDecorator.callCollectAsync(CmdInfo cmdInfo, Object data, Consumer<ResponseCollect> action) Async collect-call with Object payload.default voidLogicCallCollectCommunicationDecorator.callCollectAsync(CmdInfo cmdInfo, String data, Consumer<ResponseCollect> action) Async collect-call with String payload.default voidLogicCallCollectCommunicationDecorator.callCollectAsync(CmdInfo cmdInfo, Consumer<ResponseCollect> action) Async collect-call with no payload.default voidLogicCallCollectCommunicationDecorator.callCollectAsync(CmdInfo cmdInfo, List<?> dataList, Consumer<ResponseCollect> action) Async collect-call with List payload.default voidLogicCallCollectCommunicationDecorator.callCollectAsync(RequestMessage message, Consumer<ResponseCollect> action) Async collect-call using a pre-built request message with the current executor.default voidLogicCallCollectCommunicationDecorator.callCollectAsync(RequestMessage message, Consumer<ResponseCollect> action, Executor executor) Async collect-call using a pre-built request message with a custom executor.default voidLogicCallCollectCommunicationDecorator.callCollectAsyncListBool(CmdInfo cmdInfo, List<Boolean> dataList, Consumer<ResponseCollect> action) Async collect-call with List<Boolean> payload.default voidLogicCallCollectCommunicationDecorator.callCollectAsyncListInt(CmdInfo cmdInfo, List<Integer> dataList, Consumer<ResponseCollect> action) Async collect-call with List<Integer> payload.default voidLogicCallCollectCommunicationDecorator.callCollectAsyncListLong(CmdInfo cmdInfo, List<Long> dataList, Consumer<ResponseCollect> action) Async collect-call with List<Long> payload.default voidLogicCallCollectCommunicationDecorator.callCollectAsyncListString(CmdInfo cmdInfo, List<String> dataList, Consumer<ResponseCollect> action) Async collect-call with List<String> payload. -
Uses of ResponseCollect in com.iohao.net.framework.protocol
Classes in com.iohao.net.framework.protocol that implement ResponseCollectModifier and TypeClassDescriptionclassDefault implementation ofResponseCollectthat stores aggregated responses from multiple logic servers. -
Uses of ResponseCollect in com.iohao.net.server
Methods in com.iohao.net.server that return ResponseCollectModifier and TypeMethodDescriptionDefaultCommunicationAggregation.callCollect(RequestMessage message) Methods in com.iohao.net.server that return types with arguments of type ResponseCollectModifier and TypeMethodDescriptionDefaultCommunicationAggregation.callCollectFuture(RequestMessage message)