This function is part of the Sessions Interface.
Destroy a session given a session name
{Result.InvalidParameters} if any of the options are incorrect
{Result.AlreadyPending} if the session is already marked for destroy
{Result.NotFound} if a session to be destroyed does not exist
Return Value
{Result.Success} if the destroy completes successfully
Parameters
Sessions.SessionsInterface.DestroySession
Parameter Type And Name
|
Usage Information
|
DestroySessionOptions options
|
Structure containing information about the session to be destroyed
|
object clientData
|
Arbitrary data that is passed back to you in the CompletionDelegate
|
OnDestroySessionCallback completionDelegate
|
A callback that is fired when the destroy operation completes, either successfully or in error
|
This function is asynchronous; the EOS SDK guarantees that your callback (the CompletionDelegate
parameter) will run when the operation completes, regardless of whether it succeeds or fails. Use the object
parameter to pass any contextual information the callback may need in order to react properly. Relevant information can be copied from the EOS SDK's cache while the callback function is running. You do not need to remove the callback function.
Because this function is asynchronous, it employs a callback of type Sessions.OnDestroySessionCallback to report the results of its operation.
Function prototype definition for callbacks passed to {SessionsInterface.DestroySession}
Callback Parameters
Sessions.OnDestroySessionCallback
Parameter Type And Name
|
Usage Information
|
DestroySessionCallbackInfo data
|
A EOS_Sessions_DestroySessionCallbackInfo containing the output information and result
|