Uses of Class
com.iohao.net.framework.protocol.SendMessage
Packages that use SendMessage
Package
Description
Provides communication contracts and adapters used for request/response delivery, broadcasts, and
cross-service messaging within the framework runtime.
Provides the action invocation flow model, context propagation, and execution pipeline contracts
used to process business requests end to end.
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.
SBE encoders used by logic servers for internal, external, and broadcast traffic.
Aeron fragment handlers used by logic servers for requests, responses, and external calls.
-
Uses of SendMessage in com.iohao.net.framework.communication
Methods in com.iohao.net.framework.communication that return SendMessageModifier and TypeMethodDescriptiondefault SendMessageLogicSendCommunicationDecorator.ofSendMessage(CmdInfo cmdInfo, boolean data) Create a SendMessage with boolean payload.default SendMessageLogicSendCommunicationDecorator.ofSendMessage(CmdInfo cmdInfo, byte[] data) Create a SendMessage for the given command with raw byte data.default SendMessageLogicSendCommunicationDecorator.ofSendMessage(CmdInfo cmdInfo, int data) Create a SendMessage with int payload.default SendMessageLogicSendCommunicationDecorator.ofSendMessage(CmdInfo cmdInfo, long data) Create a SendMessage with long payload.default SendMessageLogicSendCommunicationDecorator.ofSendMessage(CmdInfo cmdInfo, Object data) Create a SendMessage with Object payload.default SendMessageLogicSendCommunicationDecorator.ofSendMessage(CmdInfo cmdInfo, String data) Create a SendMessage with String payload.default SendMessageLogicSendCommunicationDecorator.ofSendMessage(CmdInfo cmdInfo, List<?> dataList) Create a SendMessage with List payload.default SendMessageLogicSendCommunicationDecorator.ofSendMessageListBool(CmdInfo cmdInfo, List<Boolean> dataList) Create a SendMessage with List<Boolean> payload.default SendMessageLogicSendCommunicationDecorator.ofSendMessageListInt(CmdInfo cmdInfo, List<Integer> dataList) Create a SendMessage with List<Integer> payload.default SendMessageLogicSendCommunicationDecorator.ofSendMessageListLong(CmdInfo cmdInfo, List<Long> dataList) Create a SendMessage with List<Long> payload.default SendMessageLogicSendCommunicationDecorator.ofSendMessageListString(CmdInfo cmdInfo, List<String> dataList) Create a SendMessage with List<String> payload.Methods in com.iohao.net.framework.communication with parameters of type SendMessageModifier and TypeMethodDescriptionvoidLogicCommunication.send(SendMessage message) Send a message to another logic server without expecting a response (fire-and-forget).default voidLogicSendCommunicationDecorator.send(SendMessage message) Send a message to another logic server. -
Uses of SendMessage in com.iohao.net.framework.core.flow
Methods in com.iohao.net.framework.core.flow that return SendMessageModifier and TypeMethodDescriptiondefault SendMessageFlowLogicSendCommunication.ofSendMessage(CmdInfo cmdInfo, byte[] data) Create aSendMessagefor the given command, copying routing fields from the current request. -
Uses of SendMessage in com.iohao.net.framework.protocol
Methods in com.iohao.net.framework.protocol that return SendMessageModifier and TypeMethodDescriptionstatic SendMessageCreate a newSendMessagewith the given command route and payload. -
Uses of SendMessage in com.iohao.net.server
Methods in com.iohao.net.server with parameters of type SendMessage -
Uses of SendMessage in com.iohao.net.server.logic.codec
Classes in com.iohao.net.server.logic.codec that implement interfaces with type arguments of type SendMessageModifier and TypeClassDescriptionclassBase SBE encoder for internal send messages.Methods in com.iohao.net.server.logic.codec with parameters of type SendMessageModifier and TypeMethodDescriptionvoidSendMessageSbe.encoder(SendMessage message, MessageHeaderEncoder headerEncoder, org.agrona.MutableDirectBuffer buffer) protected voidSendMessageSbe.extracted(SendMessage message) -
Uses of SendMessage in com.iohao.net.server.logic.fragment
Methods in com.iohao.net.server.logic.fragment with parameters of type SendMessageModifier and TypeMethodDescriptionprotected voidSendMessageOnFragment.extracted(SendMessage message)