vibe.rpcchannel.server

Implements the RPC server.

This contains lower level APIs, see vibe.rpcchannel.tcp and vibe.rpcchannel.noise for a simpler API.

Members

Classes

ServerSession
class ServerSession(API)

One instance of a client<->server communication server session.

Functions

createServerSession
ServerSession!API createServerSession(Stream stream, ConnectionInfo info)

Creates a server session. Runs and blocks the current task.

Variables

isServerAPI
enum bool isServerAPI(T, ConnectionInfo);

Whether a class can be used as an API server.

Meta