Uses of Class
com.iohao.net.framework.core.BarSkeleton
Packages that use BarSkeleton
Package
Description
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 framework-specific utility helpers used by action parsing, metadata access, and runtime
support operations.
Provides startup-runner extension contracts that execute once after logic-server startup, similar
to Spring's `CommandLineRunner`.
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 BarSkeleton in com.iohao.net.framework.core
Fields in com.iohao.net.framework.core declared as BarSkeletonModifier and TypeFieldDescriptionActionParserContext.barSkeletonThe business framework skeleton that owns the action being parsed.Methods in com.iohao.net.framework.core that return BarSkeletonModifier and TypeMethodDescriptionBarSkeletonBuilder.build()Build and return a fully configuredBarSkeletoninstance.static BarSkeletonBarSkeletonManager.getBarSkeleton(int serverId) Retrieve theBarSkeletonassociated with the given server ID.Methods in com.iohao.net.framework.core with parameters of type BarSkeletonModifier and TypeMethodDescriptionvoidDefaultSkeletonThreadPipeline.execute(BarSkeleton barSkeleton, FlowContext flowContext) voidFlowExecutor.execute(FlowContext flowContext, BarSkeleton barSkeleton) voidSkeletonThreadPipeline.execute(BarSkeleton barSkeleton, FlowContext flowContext) Dispatch the given flow context for execution on an appropriate thread.default voidActionParserListener.onAfter(BarSkeleton barSkeleton) Executed afterActionParserListener.onActionCommand(ActionParserContext)static voidBarSkeletonManager.putBarSkeleton(int serverId, BarSkeleton barSkeleton) Register aBarSkeletonfor the given server ID. -
Uses of BarSkeleton in com.iohao.net.framework.core.flow
Methods in com.iohao.net.framework.core.flow that return BarSkeletonModifier and TypeMethodDescriptionDefaultFlowContext.getBarSkeleton()FlowCommon.getBarSkeleton()Get theBarSkeletonexecution engine for this flow.FlowContext.getBarSkeleton()Get the BarSkeleton that is processing this flow.Methods in com.iohao.net.framework.core.flow with parameters of type BarSkeletonModifier and TypeMethodDescriptionvoidDefaultFlowContext.setBarSkeleton(BarSkeleton barSkeleton) voidFlowContext.setBarSkeleton(BarSkeleton barSkeleton) Set the BarSkeleton for this flow. -
Uses of BarSkeleton in com.iohao.net.framework.core.kit
Methods in com.iohao.net.framework.core.kit with parameters of type BarSkeletonModifier and TypeMethodDescriptionstatic voidFlowExecutorKit.execute(FlowContext flowContext, BarSkeleton barSkeleton) Execute the full action method processing pipeline. -
Uses of BarSkeleton in com.iohao.net.framework.core.runner
Methods in com.iohao.net.framework.core.runner with parameters of type BarSkeletonModifier and TypeMethodDescriptionvoidRunner.onStart(BarSkeleton skeleton) Before establishing the network connectiondefault voidRunner.onStartAfter(BarSkeleton skeleton) After establishing the network connectionvoidRunners.setBarSkeleton(BarSkeleton barSkeleton) -
Uses of BarSkeleton in com.iohao.net.framework.protocol
Methods in com.iohao.net.framework.protocol that return BarSkeletonModifier and TypeMethodDescriptionServer.barSkeleton()Returns the value of thebarSkeletonrecord component.ServerBuilder.getBarSkeleton()Methods in com.iohao.net.framework.protocol with parameters of type BarSkeletonModifier and TypeMethodDescriptionServer.InternalBuilder.setBarSkeleton(BarSkeleton barSkeleton) ServerBuilder.setBarSkeleton(BarSkeleton barSkeleton) Constructors in com.iohao.net.framework.protocol with parameters of type BarSkeletonModifierConstructorDescriptionServer(int id, String name, String tag, ServerTypeEnum serverType, int netId, String ip, String pubName, int[] cmdMerges, Map<String, byte[]> payloadMap, BarSkeleton barSkeleton) Creates an instance of aServerrecord class. -
Uses of BarSkeleton in com.iohao.net.server
Methods in com.iohao.net.server with parameters of type BarSkeletonModifier and TypeMethodDescriptiondefault voidLogicServer.startupSuccess(BarSkeleton barSkeleton) Callback invoked after startup finishes successfully.