Skip to content

8. Session and Actor Binding

Guide Home | Previous: 7. Actor and Spot | Next: 9. STREAM

View in another language — C#/.NET · C++ · Java · Kotlin · Node/TypeScript

The documents that own this chapter's contractSession Actor dispatch owns the behavior, and the per-language STREAM session / bound session public contract owns the exact signatures.

Session binding connects a client STREAM session to an exact Actor incarnation. After binding, the session can relay a client packet to the Actor, and the Actor can push through the same session.

Binding is independent of the Actor's Spot membership. Even when an Actor relocates to another Spot or node, ActorId and ObjectGeneration are preserved and the Framework updates the binding route.

The cardinality is open in only one direction. One Session can bind several Actors at once — one connection can use both a player Actor and a party Actor. Conversely, one Actor is bound to only one session at a time. Once a new binding is confirmed, the previous binding becomes invalid, and a late message sent to it is rejected.

Relay doesn't re-query the Location Store. The session keeps, per Actor, the route it confirmed at bind time and uses it to send. When an Actor moves, the Framework updates that stored route after the relocation commits — the application doesn't rebind.

1. Binding an Actor After Authentication

Create or find the Actor in the Session handler, then bind the ActorRef. Don't pass a local Actor instance or a target NodeRid directly.

See it in a sample — TicTacToe. This is where the authentication request is received, the player Actor is created and bound to the session, and the reply is sent. The excerpt is actual code from the repository.

class AuthenticatePlaySessionHandler(
    private val actors: ZLinkActorManager,
    private val channels: ZLinkClient,
) : ZLinkSuspendingTypedSessionPacketHandler<ZLinkSessionContext, AuthenticateReq> {
    override fun packetName(): String = "AuthenticateReq"

    override fun messageType(): Class<AuthenticateReq> = AuthenticateReq::class.java

    override suspend fun handle(
        context: ZLinkSessionContext,
        dispatch: ZLinkSessionDispatchContext,
        request: AuthenticateReq,
    ) {
        require(request.accessToken.isNotBlank()) { "access token is required" }
        val authenticated = channels
            .requestToChannel(SampleNames.ApiChannel, AuthenticatePlayerReq(request.accessToken))
            .timeout(SampleNames.RequestTimeout)
            .submit(AuthenticatePlayerRes::class.java)
            .await()
        val playActor = actors.kotlin().getOrCreate(
            authenticated.player.actorId,
            SampleNames.PlayActor,
        ).request(PlayerActorCreateReq(authenticated.player)).await()
        val resolvedActor = requireActor(playActor)
        val boundActor = context.actors().bind(requireActor(playActor)).await()
        check(boundActor.ref() == resolvedActor) {
            "Bound ActorRef does not match the resolved ActorRef for '${authenticated.player.actorId}'."
        }
        if (playActor is ZLinkActorCreateResult.Existing) {
            logger.info(
                "tictactoe-lifecycle actor-bound actor={}",
                boundActor.actorId(),
            )
        }
        context.client()
            .reply(AuthenticateRes(authenticated.player))
            .submit()
            .await()
    }

    private fun requireActor(result: ZLinkActorCreateResult): ActorRef = when (result) {
        is ZLinkActorCreateResult.Existing -> result.actor
        is ZLinkActorCreateResult.Created -> result.actor
        is ZLinkActorCreateResult.Rejected -> throw IllegalStateException("Play actor creation was rejected.")
    }

    private companion object {
        val logger = LoggerFactory.getLogger(AuthenticatePlaySessionHandler::class.java)
    }
}

A minimal version looks like this.

suspend fun handle(
    context: ZLinkSessionContext, dispatch: ZLinkSessionDispatchContext, request: Authenticate) {
    val result = actors
        .getOrCreate(request.playerId, "player")
        .request(CreatePlayer(request.displayName))
        .submit()
        .await()
    val actor = when (result) {
        is ZLinkActorCreateResult.Existing -> result.actor()
        is ZLinkActorCreateResult.Created -> result.actor()
        else -> error("Player creation was rejected.")
    }

    // Returns the existing route if the same exact incarnation is already bound.
    context.actors().bind(actor).await()

    // Submits the current request's one-shot reply.
    context.client().reply(Authenticated(actor.actorId())).submit().await()
}

bind treats a duplicate bind as an error. For a flow that might already be bound, like a retried authentication, use bindOrGet.

2. Relaying a Session Packet to an Actor

Register session-only handlers, such as authentication, in the Session's configure(). An unhandled packet is handed to the bound Actor.

class PlaySession(private val context: ZLinkSessionContext) : ZLinkSession {

    override fun configure() {
        // Registers the packet to handle before Actor binding.
        context.handlers().addHandler(AuthenticateHandler::class.java)
    }

    override suspend fun onDispatch(dispatch: ZLinkSessionDispatchContext, payload: ZLinkMessage) {
        if (context.handlers().tryHandle(context, dispatch, payload).await()) return

        // Hands the Framework-owned payload to the Actor handler without decoding it.
        requireSingleBoundActor().relay(payload).await()
    }

    override suspend fun onConnected() {}
    override suspend fun onDisconnected() {}
}

One session can bind several Actors. In that case, the application protocol passes the selected ActorId to Context.Actors.Find(actorId). The Framework never picks an arbitrary Actor on its own.

3. Disconnect Notification

The Framework automatically notifies every current binding on a physical STREAM disconnect. Call it explicitly only to signal a logical disconnect while the connection stays up.

context.actors().find(playerId)?.let { actor ->
    // Waits for the onDisconnectActor callback on the Actor's Spot to complete.
    actor.notifyDisconnected().await()
}

A disconnect doesn't delete the Actor or move it to the Entry Spot. A reconnecting session can look up the same ActorRef again and bind it.

If notifying one Actor fails, the rest continue. The Framework takes a snapshot of the bindings at the moment the connection drops and notifies each Actor; if one of them fails or a callback exceeds its deadline, it doesn't stop notifying the remaining Actors or stop session cleanup.

Even if the automatic notification and an explicit call overlap, the callback runs only once. The Framework merges two notifications for the same binding, so if the connection drops right after an explicit call, the Spot's disconnect callback doesn't run twice.

4. Pushing from an Actor to the Client

An Actor handler sends a message to the currently bound client through Context.BoundSession.

suspend fun handle(
    spot: GameRoom, actor: PlayerActor, messageContext: ZLinkMessageContext, message: StateChanged) {
    // Waits for local admission on the current bound session.
    actor.context().boundSession()
        .send(GameStateNotify(message.state))
        .metadata("revision", message.revision.toString())
        .submit()
        .await()
}

A bound session supports only push and disconnect. An Actor's reply to a client request is handled through the request handler's return value.

5. Error-Handling Standard

Situation Result
The Actor doesn't exist or isn't Ready The bind ends with a typed framework error.
ObjectGeneration differs A stale ActorRef is never bound to a different incarnation.
An Actor relocation seal is in progress Ends with ActorMoving, with no hidden retry.
An Actor relocates after binding The Framework updates the route without rebinding the session.
Session disconnect The Actor and its Spot membership are preserved.
A reply arrives after the session has closed Discarded. Never used as the reply for a new session or a new binding.
A timeout/route failure after a relay Never auto-resent to a different Actor, new owner, or different node.

ActorRef.MeshName and NodeRid are a snapshot of the initial control route. The application doesn't assemble a stale route on its own — it re-obtains the current ref through the actor manager's lookup call.

  • Runnable verification examples for this chapter's contract: 13. Interface Catalog chapter §5 — the verification class StreamContracts
  • The STREAM node and session lifecycle: STREAM
  • Actor creation and Spot join: Actor And Spot