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 0 latency and guaratee delivery. |
Invalid | Not configured, or unsupported tramsport interface. The transport type for a registered driver instance is always valid, unless the driver creation fail. |
Socket | A socket based communication channel. WebSocket, UDP, TCP or any similar communication channel fit that category. |