Package org.red5.server.adapter
Interface IApplication
- All Known Implementing Classes:
ApplicationLifecycle
public interface IApplication
IApplication provides lifecycle methods that most communication applications will use. This interface defines the methods that are called by Red5 through an applications life. It is suggested that you NOT implement this interface yourself, but instead you should subclass org.red5.server.adapter.MultiThreadedApplicationAdapter or org.red5.server.adapter.ApplicationAdapter.
- Author:
- Dominick Accattato
-
Method Summary
Modifier and TypeMethodDescriptionboolean
appConnect
(IConnection conn, Object[] params) Called per each client connectvoid
appDisconnect
(IConnection conn) Called every time client disconnects from the applicationboolean
Called every time client joins app level scopevoid
Called every time client leaves the application scopeboolean
Called once when application or room startsvoid
Called on application stopboolean
roomConnect
(IConnection conn, Object[] params) Called every time client connects to the roomvoid
roomDisconnect
(IConnection conn) Called when client disconnects from room scopeboolean
Called when user joins room scopevoid
Called when user leaves room scopeboolean
Called on application room startvoid
Called on room scope stop
-
Method Details
-
appStart
Called once when application or room starts- Parameters:
app
- Application or room level scope. SeeIScope
for details- Returns:
true
continues application run,false
terminates
-
appConnect
Called per each client connect- Parameters:
conn
- Connection object used to provide basic connection methods. SeeIConnection
params
- List of params sent from client with NetConnection.connect call- Returns:
true
accepts the connection,false
rejects it
-
appJoin
Called every time client joins app level scope- Parameters:
client
- Client objectapp
- Scope object- Returns:
true
accepts the client,false
rejects it
-
appDisconnect
Called every time client disconnects from the application- Parameters:
conn
- Connection object SeeIConnection
-
appLeave
Called every time client leaves the application scope- Parameters:
client
- Client objectapp
- Scope object
-
appStop
Called on application stop- Parameters:
app
- Scope object
-
roomStart
Called on application room start- Parameters:
room
- Scope object- Returns:
true
if scope can be started,false
otherwise
-
roomConnect
Called every time client connects to the room- Parameters:
conn
- Connection objectparams
- List of params sent from client with NetConnection.connect call- Returns:
true
accepts the connection,false
rejects it
-
roomJoin
Called when user joins room scope- Parameters:
client
- Client objectroom
- Scope object- Returns:
true
accepts the client,false
rejects it
-
roomDisconnect
Called when client disconnects from room scope- Parameters:
conn
- Connection object used to provide basic connection methods. SeeIConnection
-
roomLeave
Called when user leaves room scope- Parameters:
client
- Client objectroom
- Scope object
-
roomStop
Called on room scope stop- Parameters:
room
- Scope object
-