Navigation
API > API/Plugins > API/Plugins/OnlineSubsystem > API/Plugins/OnlineSubsystem/IOnlinePresence
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void QueryPresence
(
const FUniqueNetId& User, |
Starts an async operation that will update the cache with presence data from all users in the Users array. | Interfaces/OnlinePresenceInterface.h | |
virtual void QueryPresence
(
const FUniqueNetId& LocalUserId, |
Starts an async operation that will update the cache with presence data from all users in the Users array. | Interfaces/OnlinePresenceInterface.h |
QueryPresence(const FUniqueNetId &, const FOnPresenceTaskCompleteDelegate &)
Description
Starts an async operation that will update the cache with presence data from all users in the Users array. On platforms that support multiple keys, this function will query all keys.
| Name | QueryPresence |
| Type | function |
| Header File | /Engine/Plugins/Online/OnlineSubsystem/Source/Public/Interfaces/OnlinePresenceInterface.h |
| Include Path | #include "Interfaces/OnlinePresenceInterface.h" |
void QueryPresence
(
const FUniqueNetId & User,
const FOnPresenceTaskCompleteDelegate & Delegate
)
Parameters
| Name | Remarks |
|---|---|
| Users | The list of unique ids of the users to query for presence information. |
| Delegate | The delegate to be executed when the potentially asynchronous query operation completes. |
QueryPresence(const FUniqueNetId &, const TArray< FUniqueNetIdRef > &, const FOnPresenceTaskCompleteDelegate &)
Description
Starts an async operation that will update the cache with presence data from all users in the Users array. On platforms that support multiple keys, this function will query all keys.
| Name | QueryPresence |
| Type | function |
| Header File | /Engine/Plugins/Online/OnlineSubsystem/Source/Public/Interfaces/OnlinePresenceInterface.h |
| Include Path | #include "Interfaces/OnlinePresenceInterface.h" |
virtual void QueryPresence
(
const FUniqueNetId & LocalUserId,
const TArray < FUniqueNetIdRef > & UserIds,
const FOnPresenceTaskCompleteDelegate & Delegate
)
Parameters
| Name | Remarks |
|---|---|
| Users | The unique id of the user initiating the query for presence information. |
| UserIds | The list of unique ids of the users to query for presence information. |
| Delegate | The delegate to be executed when the potentially asynchronous query operation completes. |