Navigation
API > API/Plugins > API/Plugins/ConcertSyncCore
| |
|
| Name |
EJoinReplicationErrorCode |
| Type |
enum |
| Header File |
/Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Source/ConcertSyncCore/Public/Replication/Messages/Handshake.h |
| Include Path |
#include "Replication/Messages/Handshake.h" |
Syntax
enum EJoinReplicationErrorCode
{
Success = 0,
NetworkError = 1,
Cancelled = 2,
AlreadyInProgress = 3,
NotInAnyConcertSession = 4,
AlreadyInSession = 5,
InvalidClass = 6,
DuplicateStreamId = 7,
FailedToUnpackStream = 8,
MaxPlusOne,
Max = MaxPlusOne - 1,
}
Values
| Name |
Remarks |
| Success |
|
| NetworkError |
Indicates generic error obtaining a response from the server. |
| Cancelled |
Cancelled while initialization was in progress. |
| AlreadyInProgress |
Another request is already in progress. |
| NotInAnyConcertSession |
Session: |
| AlreadyInSession |
Client has already joined a replication session. Send FConcertLeaveReplicationSessionEvent first. |
| InvalidClass |
Invalid input: |
| DuplicateStreamId |
Your input contained the same stream id twice. |
| FailedToUnpackStream |
Failed to unpack the stream, likely because one of the attribute classes could not be resolved. |
| MaxPlusOne |
|
| Max |
The maximum possible entry value |