Uses of Record Class
com.iohao.net.framework.protocol.Server
Packages that use Server
Package
Description
Provides the core abstractions and runtime infrastructure for external servers, including
protocol handling, session management, hooks, and internal communication integration.
Provides Netty channel handlers used by the external-server implementation to decode requests,
manage pipelines, and dispatch messages.
Provides distributed EventBus contracts for publishing and subscribing cross-service events
within ionet applications.
Provides the core action execution model, metadata, lifecycle hooks, and shared runtime building
blocks used by ionet business logic.
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.
Net-server load-balancing abstractions and default selectors.
Net-server Aeron connection management, connection metadata, and shutdown hooks.
Aeron fragment handlers used by net-server for peer registration and peer events.
Net-server peer lifecycle listener contracts and default listeners.
Logic-server bootstrap helpers, codecs, and Aeron fragment handlers.
-
Uses of Server in com.iohao.net.external.core
Methods in com.iohao.net.external.core that return ServerModifier and TypeMethodDescriptionExternalSetting.server()Returns the value of theserverrecord component.Methods in com.iohao.net.external.core with parameters of type ServerModifier and TypeMethodDescriptionConstructors in com.iohao.net.external.core with parameters of type ServerModifierConstructorDescriptionExternalSetting(int port, Server server, UserSessions<?, ?> userSessions, IdleProcessSetting idleProcessSetting, AttrOptions options) Creates an instance of aExternalSettingrecord class. -
Uses of Server in com.iohao.net.external.core.netty.handler
Methods in com.iohao.net.external.core.netty.handler with parameters of type Server -
Uses of Server in com.iohao.net.framework.communication.eventbus
Methods in com.iohao.net.framework.communication.eventbus that return ServerConstructors in com.iohao.net.framework.communication.eventbus with parameters of type ServerModifierConstructorDescriptionEventServerMessage(Server server, Set<String> topics) Create an EventServerMessage for the given server and its subscribed topics. -
Uses of Server in com.iohao.net.framework.core
Fields in com.iohao.net.framework.core declared as Server -
Uses of Server in com.iohao.net.framework.core.flow
Methods in com.iohao.net.framework.core.flow that return Server -
Uses of Server in com.iohao.net.framework.protocol
Methods in com.iohao.net.framework.protocol that return Server -
Uses of Server in com.iohao.net.server
Methods in com.iohao.net.server that return ServerModifier and TypeMethodDescriptionResolves a target server for the request.static ServerServerManager.getServerById(int serverId) static ServerServerManager.ofServer(ServerMessage server) Methods in com.iohao.net.server that return types with arguments of type ServerMethods in com.iohao.net.server with parameters of type ServerModifier and TypeMethodDescriptionvoidAdds a server definition before startup.static voidstatic voidServerManager.removeServer(Server server) Method parameters in com.iohao.net.server with type arguments of type ServerModifier and TypeMethodDescriptionstatic voidServerManager.forEach(BiConsumer<Integer, Server> action) -
Uses of Server in com.iohao.net.server.balanced
Methods in com.iohao.net.server.balanced that return ServerModifier and TypeMethodDescriptiondefault ServerExternalServerLoadBalanced.getAnyServer()ExternalServerLoadBalanced.getServer(int externalServerId) LogicServerLoadBalanced.getServer(int serverId) LogicServerLoadBalanced.getServerByCmdMerge(int cmdMerge) ServerRegion.getServerById(int serverId) Methods in com.iohao.net.server.balanced that return types with arguments of type ServerModifier and TypeMethodDescriptionServerRegion.getServerMap()ExternalServerLoadBalanced.listServer()ServerRegion.listServer()Methods in com.iohao.net.server.balanced with parameters of type ServerModifier and TypeMethodDescriptionvoiddefault voidvoiddefault voidBalancedManager.unregister(Server message) voidServerLoadBalanced.unregister(Server message) -
Uses of Server in com.iohao.net.server.connection
Methods in com.iohao.net.server.connection that return ServerConstructors in com.iohao.net.server.connection with parameters of type Server -
Uses of Server in com.iohao.net.server.fragment
Methods in com.iohao.net.server.fragment with parameters of type ServerModifier and TypeMethodDescriptionstatic voidServerLineKit.offlineProcess(Server otherServer, NetServerSetting setting) static voidServerLineKit.onlineProcess(Server otherServer, NetServerSetting setting) -
Uses of Server in com.iohao.net.server.listener
Methods in com.iohao.net.server.listener with parameters of type ServerModifier and TypeMethodDescriptionvoidDebugServerListener.connectBefore(Server server, NetServerSetting setting) default voidServerListener.connectBefore(Server message, NetServerSetting setting) voidCmdRegionServerListener.offlineServer(Server server, NetServerSetting setting) voidDebugServerListener.offlineServer(Server server, NetServerSetting setting) default voidServerListener.offlineServer(Server server, NetServerSetting setting) Called when another server goes offline.voidCmdRegionServerListener.onlineServer(Server server, NetServerSetting setting) voidDebugServerListener.onlineServer(Server server, NetServerSetting setting) default voidServerListener.onlineServer(Server server, NetServerSetting setting) Called for servers that are already online or become newly connected. -
Uses of Server in com.iohao.net.server.logic
Methods in com.iohao.net.server.logic that return ServerModifier and TypeMethodDescriptionstatic ServerLogicServerApplication.startup(LogicServer logicServer) Builds the logic-server skeleton and server metadata, then registers startup callbacks.