Interface IFSConnectionHandler
-
- All Superinterfaces:
IAPIHandler
,Serializable
- All Known Implementing Classes:
FSConnectionHandler
public interface IFSConnectionHandler extends IAPIHandler
The Class FSConnectionHandler.- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Boolean
closeAllConnections(UserContext uc)
Close all connections.Boolean
connect(UserContext uc, FrontendServer fs)
Connect.boolean
disconnect(UserContext uc, FrontendServer fs)
Disconnect.EConnectionStatus
getStatus(UserContext uc, long frontendserver_id)
Gets the status.Boolean
initConnections(UserContext uc)
Inits the connections.Boolean
testConnection(UserContext uc, FrontendServer fs)
Test connection.-
Methods inherited from interface de.xima.fc.com.interfaces.IAPIHandler
getName
-
-
-
-
Method Detail
-
disconnect
boolean disconnect(UserContext uc, FrontendServer fs)
Disconnect.- Parameters:
fs
- the fs- Returns:
- the boolean
-
testConnection
Boolean testConnection(UserContext uc, FrontendServer fs)
Test connection.- Parameters:
fs
- the fs- Returns:
- the boolean
-
connect
Boolean connect(UserContext uc, FrontendServer fs)
Connect.- Parameters:
fs
- the fs- Returns:
- the boolean
-
getStatus
EConnectionStatus getStatus(UserContext uc, long frontendserver_id)
Gets the status.- Parameters:
frontendserver_id
- the frontendserver_id- Returns:
- the status
-
initConnections
Boolean initConnections(UserContext uc)
Inits the connections.- Returns:
- the boolean
-
closeAllConnections
Boolean closeAllConnections(UserContext uc)
Close all connections.- Returns:
- the boolean
-
-