Class ServerAbstract

Represents a server that can connect with multiple clients.

Constructors

Properties

operationHistory: Operation[] = []

The history of operations performed on the server.

revision: number = 0

The current revision number of the server.

Methods

  • Gets the current document on the server.

    Returns string

    The document content.

  • Receives an operation from a client and applies it to the server's document.

    (Usually) should NOT manually called.

    Parameters

    • operation: Operation

      The operation to be applied.

    • fromRevision: number

      The revision number from which the operation is received.

    • sessionId: string

      The session ID of the client sending the operation.

    Returns void

  • Sends an acknowledge message to a client with the specified session ID.

    (Usually) should NOT manually called.

    Parameters

    • sessionId: string

      The session ID of the client to send the acknowledge message to.

    Returns this

    The current instance of the Server class.

  • Sends an operation to all clients except the one with the specified session ID.

    (Usually) should NOT manually called.

    Parameters

    • operation: Operation

      The operation to send.

    • sessionId: string

      The session ID of the client to exclude.

    Returns this

    The current instance of the Server class.