The hello message is automatically sent by the sever upon connection.

interface FlowrHelloResponseMessage {
    clientName: string;
    id: undefined;
    type: "hello";
    versions: VersionInformation;
}

Hierarchy (view full)

Hierarchy-Diagram

UML class diagram of FlowrHelloResponseMessage

Properties

clientName: string

A unique name that is assigned to each client. It has no semantic meaning and is only used/useful for debugging.

id: undefined

The hello message never has an id, it is always undefined

type: "hello"

The at this time unknown type

Describes which versions are in use on the server.

VersionInformation