Ejemplo n.º 1
0
 /**
  * @brief Connect to channel.<br>
  * After signing in, player who has playerId connect with channelId.<br>
  * If channel id is already connected other playerId or current channelId is not connected with current playerId, NM_RESULT_CODE_SELECT_CHANNEL_CONNECT_OPTION result and option list that you can choose will be delivered.
  * You can use SelectChannelConnectOption API to select option in option list.
  *
  * @param channel Channel.
  * @param callback Callback to deal with a reponse to the request.
  * @see ConnectToChannelDelegate
  * @see Channel
  */
 public void ConnectToChannel(int channelCode, ConnectToChannelDelegate callback)
 {
     Log.Debug("[Session] ConnectToChannel");
     SessionImpl.ConnectToChannel(channelCode, callback);
 }