Modifier and Type | Method and Description |
---|---|
Client |
ClientDao.add(Client entity) |
Client |
ClientDao.getClientByServerAndStreamId(Server server,
String streamId)
Query.getSingleResult would throw an error if result is null,
see: http://stackoverflow.com/questions/2002993/jpa-getsingleresult-or-null
|
Client |
ClientDao.update(Client entity) |
Modifier and Type | Method and Description |
---|---|
List<Client> |
ClientDao.getClients() |
List<Client> |
ClientDao.getClientsByPublicSID(String publicSID) |
List<Client> |
ClientDao.getClientsByPublicSIDAndServer(Server server,
String publicSID) |
List<Client> |
ClientDao.getClientsByRoomId(Long roomId) |
List<Client> |
ClientDao.getClientsByServer(Server server) |
List<Client> |
ClientDao.getClientsByUserId(Server server,
Long userId) |
List<Client> |
ClientDao.getClientsWithServer() |
Modifier and Type | Method and Description |
---|---|
Client |
ClientDao.add(Client entity) |
void |
ClientDao.delete(Client entity) |
Client |
ClientDao.update(Client entity) |
Modifier and Type | Method and Description |
---|---|
Client |
ISessionManager.addClientListItem(String streamId,
String scopeName,
Integer remotePort,
String remoteAddress,
String swfUrl,
Server server)
add a new client item
|
Client |
ISessionManager.getClientByPublicSID(String publicSID,
Server server)
get a client by its publicSID and the server,
|
Client |
ISessionManager.getClientByStreamId(String streamId,
Server server)
Get a client by its streamId
|
Client |
ISessionManager.getClientByUserId(Long userId)
Deprecated.
There could be multiple users logged in with the same userid,
then this call would return a list not a single user
|
Modifier and Type | Method and Description |
---|---|
List<Client> |
ISessionManager.getClientListByRoom(Long roomId)
Get all ClientList Objects of that room and domain This Function is
needed cause it is invoked internally AFTER the current user has been
already removed from the ClientList to see if the Room is empty again and
the PollList can be removed
|
Collection<Client> |
ISessionManager.getClientListByRoomAll(Long roomId) |
Collection<Client> |
ISessionManager.getClients() |
Collection<Client> |
ISessionManager.getClientsWithServer()
loads the server into the client (only if database cache is used)
|
List<Client> |
ISessionManager.getCurrentModeratorByRoom(Long roomId)
get the current Moderator in this room
|
SearchResult<Client> |
ISessionManager.getListByStartAndMax(int start,
int max,
String orderby,
boolean asc)
Get list of current client sessions
|
Modifier and Type | Method and Description |
---|---|
boolean |
ISessionManager.updateAVClientByStreamId(String streamId,
Client rcm,
Server server)
Update the session object of the audio/video-connection and additionally
swap the values to the session object of the user that holds the full
session object
|
boolean |
ISessionManager.updateClientByStreamId(String streamId,
Client rcm,
boolean updateRoomCount,
Server server)
Update the session object
updateRoomCount is only one time true, in
ScopeApplicationAdapter#setRoomValues(Long, Boolean, Boolean, String)
.
|
Modifier and Type | Method and Description |
---|---|
List<Client> |
RoomStatus.getClientList() |
Modifier and Type | Method and Description |
---|---|
void |
RoomStatus.setClientList(List<Client> clientList) |
Modifier and Type | Method and Description |
---|---|
Client |
ClientSessionInfo.getRcl() |
Modifier and Type | Method and Description |
---|---|
void |
ClientSessionInfo.setRcl(Client rcl) |
Constructor and Description |
---|
ClientSessionInfo(Client rcl,
Long serverId) |
Modifier and Type | Method and Description |
---|---|
List<Client> |
Room.getCurrentusers() |
Modifier and Type | Method and Description |
---|---|
void |
Room.setCurrentusers(List<Client> currentusers) |
Copyright © 2012–2016 Apache Software Foundation. All rights reserved.