Host、Session 与 Handler

sequenceDiagram
actor H as Host
participant S as Session
participant C as Codec/Router
participant V as Service
H->>S: hello
S-->>H: ready
H->>S: command
S->>C: decode/route
C->>V: validated operation
V-->>C: result
C->>S: response/error
S-->>H: ordered TX