Enum NetworkPipelineStage.Requests
Requests that a pipeline stage can make in their send and receive methods.
Namespace: Unity.Networking.Transport
Syntax
[Flags]
public enum Requests
Fields
Name | Description | Value |
---|---|---|
None | No request. Default value. |
0 |
Resume | Request to run the receive/send method immediately again. |
1 |
Update | Request to run the receive method on the next update. |
2 |
SendUpdate | Request to run the send method on the next update. |
4 |
Error | Request to raise an error. |
8 |