Opcodes
Everything that will be sent through the Gateway has it’s own Opcode, so everyone knows what is going to be sent and recieved.
Gateway Opcodes
CODE | NAME | SENT BY | DESCRIPTION |
---|---|---|---|
-1 | Error | Gateway | Something went completely wrong. Just reconnect. |
0 | Event | Gateway | An Event sent by the Gateway. |
1 | Event | Client | An Event sent by the Client. |
5 | Hello | Gateway | Sent after Connecting. Has the heartbeat as parameter. |
10 | Heartbeat | Client | Sent by the Client to keep the connection alive. |
11 | Heartbeat ACK | Gateway | Acknowledges the Heartbeat from the Client. |
Opcode specification
Error
The Error Opcode gets sent, if something went wrong. You will recieve a special Error code, a describing message and sometimes an array with error messages, as well as an array with the objects you’ve sent, ordered by the error messages.
Example Payload
Event from the Gatway
An Event was emited from the Gateway to the Client. You will recieve the Event Name, as well as the data for the specific Event.
Example Payload
Event from the Client
An Event was emited from the Client to the Gateway. You will recieve the Event Name, as well as the data for the specific Event.
Example Payload -> see here
Hello
After Connecting, you will recieve this Hello Payload. It contains important information for your Heartbeat.
Example Payload -> see here
Heartbeat
A Hearbeat payload just containts the opcode. No additional data should be sent.
Example Payload
Heartbeat ACK
After sending a Heartbeat Packet, you (should (in the best case (i really really hope))) recieve this ACK. If not, please reconnect to the Gateway.
Example Payload -> see here