1
0
KF2-Dev-Scripts/WebAdmin/Classes/ISessionHandler.uc

29 lines
513 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
/**
* Session handler interface
*
* Copyright 2008 Epic Games, Inc. All Rights Reserved
*
* @author Michiel 'elmuerte' Hendriks
*/
interface ISessionHandler;
/**
* Create a new session
*/
function ISession create();
/**
* Get an existing session. Returns none when there is no session with that id.
*/
function ISession get(string id);
/**
* Destroy the given session.
*/
function bool destroy(ISession session);
/**
* Destroy all sessions
*/
function destroyAll();