Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1022 B

  1. // This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
  2. namespace Oculus.Platform
  3. {
  4. using Description = System.ComponentModel.DescriptionAttribute;
  5. public enum SendPolicy : int
  6. {
  7. /// Sends a message using an unreliable data channel (UDP-based). No delivery
  8. /// or ordering guarantees are provided. Sending will fail unless a connection
  9. /// to the peer is already established, either via a previous call to
  10. /// Net.SendPacket() or an explicit Net.Connect().
  11. ///
  12. /// Ideally, each message should fit into a single packet. Therefore, it is
  13. /// recommended to keep them under 1200 bytes.
  14. [Description("UNRELIABLE")]
  15. Unreliable,
  16. /// Messages are delivered reliably and in order. The networking layer retries
  17. /// until each message is acknowledged by the peer. Outgoing messages are
  18. /// buffered until a working connection to the peer is established.
  19. [Description("RELIABLE")]
  20. Reliable,
  21. [Description("UNKNOWN")]
  22. Unknown,
  23. }
  24. }