Class ClientAbstract

Represents a client in the text editor.

Constructors

Properties

awaitOperation: null | Operation = null

The operation that the client is waiting for acknowledgement from the server.

bufferedOperation: null | Operation = null

The operation that is currently buffered by the client.

revision: number = 0

The current revision number of the client.

state: ClientState = ...

The current state of the client.

Methods

  • Acknowledge the latest unacknowledged operation.

    Called when the client receives an acknowledgement from the server.

    (Usually) should NOT manually called.

    Returns void

  • Apply a local operation to the client's document and send it to the server.

    Call this function when the client needs to perform an operation.

    Parameters

    Returns void

  • Apply an operation to the document.

    Will only update the document and NOT handle the revision, server and so on.

    (Usually) should NOT manually called. Consider using Client.applyClient.

    Parameters

    Returns void

  • Apply a remote operation from server to the client's document.

    Called when the client receives an operation from the server

    (Usually) should NOT manually called.

    Parameters

    Returns void

  • Get the current document content.

    Returns string

    The document content.

  • Send an operation to the server.

    (Usually) should NOT manually called.

    Parameters

    • operation: Operation

      The operation to send.

    • revision: number

      The current revision number (= this.revision).

    Returns this

    The updated client instance.