Enum TransportType
The transport category/type use by a NetworkDriver.
Namespace: Unity.NetCode
Assembly: Unity.NetCode.dll
Syntax
public enum TransportType
Fields
| Name | Description |
|---|---|
| IPC | An inter-process like communication channel with zero latency, and guaranteed delivery. |
| Invalid | Not configured, or unsupported transport interface. The transport type for a registered driver instance is always valid (not this value, in other words), unless the driver creation failed. |
| Socket | A socket based communication channel. WebSocket, UDP, TCP or any similar communication channels fit that category. |