Navigation
Unreal Engine C++ API Reference > Plugins > OnlineSubsystem > Interfaces
References
|
|
Module |
OnlineSubsystem |
Header |
/Engine/Plugins/Online/OnlineSubsystem/Source/Public/Interfaces/OnlinePartyInterface.h |
Include |
#include "Interfaces/OnlinePartyInterface.h" |
Syntax
enum EJoinPartyCompletionResult
&123;
UnknownClientFailure = -100,
BadBuild,
InvalidAccessKey,
AlreadyInLeadersJoiningList,
AlreadyInLeadersPartyRoster,
NoSpace,
NotApproved,
RequesteeNotMember,
RequesteeNotLeader,
NoResponse,
LoggedOut,
UnableToRejoin,
IncompatiblePlatform,
AlreadyJoiningParty,
AlreadyInParty,
JoinInfoInvalid,
AlreadyInPartyOfSpecifiedType,
MessagingFailure,
GameSpecificReason,
MismatchedApp,
UnknownInternalFailure = 0,
Succeeded = 1,
&125;
Values
Name |
Description |
UnknownClientFailure |
Unspecified error. No message sent to party leader. |
BadBuild |
Your build id does not match the build id of the party |
InvalidAccessKey |
Your provided access key does not match the party's access key |
AlreadyInLeadersJoiningList |
The party leader already has you in the joining players list |
AlreadyInLeadersPartyRoster |
The party leader already has you in the party members list |
NoSpace |
The party leader rejected your join request because the party is full |
NotApproved |
The party leader rejected your join request for a game specific reason, indicated by the NotApprovedReason parameter |
RequesteeNotMember |
The player you send the join request to is not a member of the specified party |
RequesteeNotLeader |
The player you send the join request to is not the leader of the specified party |
NoResponse |
A response was not received from the party leader in a timely manner, the join attempt is considered failed |
LoggedOut |
You were logged out while attempting to join the party |
UnableToRejoin |
You were unable to rejoin the party |
IncompatiblePlatform |
Your platform is not compatible with the party |
AlreadyJoiningParty |
We are currently waiting for a response for a previous join request for the specified party. |
AlreadyInParty |
We are already in the party that you are attempting to join. No message sent to the party leader. |
JoinInfoInvalid |
The party join info is invalid. No message sent to the party leader. |
AlreadyInPartyOfSpecifiedType |
We are already in a party of the specified type. No message sent to the party leader. |
MessagingFailure |
Failed to send a message to the party leader. No message sent to the party leader. |
GameSpecificReason |
Game specific reason, indicated by the NotApprovedReason parameter. |
MismatchedApp |
Your app id does not match the app id of the party |
UnknownInternalFailure |
DEPRECATED |
Succeeded |
Successully joined the party |