Package org.cspoker.common.api.lobby.context

Examples of org.cspoker.common.api.lobby.context.ExternalRemoteLobbyContext


  @Override
  public ExternalRemoteLobbyContext getLobbyContext(LobbyListener lobbyListener)
  throws RemoteException, IllegalActionException {
    try {
      ExternalRemoteLobbyContext remoteObject = new ExportingLobbyContext(super.getLobbyContext(lobbyListener));
      return (ExternalRemoteLobbyContext) UnicastRemoteObject.exportObject(remoteObject, 0);
    } catch (RemoteException exception) {
      logger.error(exception.getMessage(), exception);
      throw exception;
    }
View Full Code Here


  @Override
  public ExternalRemoteLobbyContext getLobbyContext(RemoteLobbyListener lobbyListener)
  throws RemoteException, IllegalActionException {
    try {
      ExternalRemoteLobbyContext remoteObject = new ExportingLobbyContext(super.getLobbyContext(lobbyListener));
      return (ExternalRemoteLobbyContext) UnicastRemoteObject.exportObject(remoteObject, 0);
    } catch (RemoteException exception) {
      logger.error(exception.getMessage(), exception);
      throw exception;
    }
View Full Code Here

TOP

Related Classes of org.cspoker.common.api.lobby.context.ExternalRemoteLobbyContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.