MessageSendMode Enum
Namespace: Riptide
Assembly: RiptideNetworking.dll
The send mode of a Message.
public enum MessageSendMode : byte
Remarks
For more information about the different message send modes and how they all work, see the Message Send Modes Explained article.
Fields
Notify |
Guarantees order but not delivery. Notifies the sender of what happened via the NotifyDelivered and NotifyLost events. The receiver must handle notify messages via the NotifyReceived event, which is different from the other two send modes. |
Unreliable |
Guarantees neither delivery nor order. |
Reliable |
Guarantees delivery but not order. |