套件 | com.adobe.mosaic.om.interfaces |
介面 | public interface ISessionManager extends IManager |
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
ISessionManager
interface represents an instance of a server connection pool.
Use this interface to create and destroy sessions. The implementation of this object will be
responsible for connecting, building, and tearing-down server sessions.
公用屬性
屬性 | 定義自 | ||
---|---|---|---|
name : String [唯讀]
Returns the name associated with the manager object. | IManager | ||
sessions : Array [唯讀]
Returns an Array of type ISession representing all opened sessions. | ISessionManager |
公用方法
方法 | 定義自 | ||
---|---|---|---|
Initiates the destruction of all open ISession instances. | ISessionManager | ||
Initiates the destruction of an ISession instance. | ISessionManager | ||
openSession(config:ISessionConfiguration, onSuccess:Function = null, onFailure:Function = null):void
Creates an ISession instance based on the supplied configuration information. | ISessionManager |
屬性詳細資訊
sessions | 屬性 |
方法詳細資訊
closeAllSessions | () | 方法 |
public function closeAllSessions(onSuccess:Function = null, onFailure:Function = null):void
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
Initiates the destruction of all open ISession instances.
參數
onSuccess:Function (default = null ) — The onSuccess function.
| |
onFailure:Function (default = null ) — The onFailure function.
|
closeSession | () | 方法 |
public function closeSession(session:ISession, onSuccess:Function = null, onFailure:Function = null):void
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
Initiates the destruction of an ISession instance. The ISession destruction generates a SessionEvent of type "sessionClosing" which is cancelable by any registered listener. If no listener invokes the "preventDefault()" method, then the session will be destroyed followed by a SessionEvent of type "sessionClosed".
參數
session:ISession — The ISession instance to close and destroy.
| |
onSuccess:Function (default = null ) — The onSuccess function.
| |
onFailure:Function (default = null ) — The onFailure function.
|
openSession | () | 方法 |
public function openSession(config:ISessionConfiguration, onSuccess:Function = null, onFailure:Function = null):void
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
Creates an ISession instance based on the supplied configuration information. The Session is ready to be utilized for requests to the associated server, although certain communication faults may occur.
參數
config:ISessionConfiguration — The ISessionConfiguration to identify the session instance.
| |
onSuccess:Function (default = null ) — The onSuccess function.
| |
onFailure:Function (default = null ) — The onFailure function.
|
Tue Jun 12 2018, 03:47 PM Z