Exemplo n.º 1
0
 /**
  * Handles a channel {@code message} that the specified {@code session} is sending on the channel
  * with the specified {@code channelRefId}. This method is invoked from the {@code
  * ClientSessionHandler} of the given session, when it receives a {@code CHANNEL_MESSAGE} protocol
  * message. This method must be called from within a transaction.
  *
  * <p>
  *
  * @param channelRefId the channel ID, as a {@code BigInteger}
  * @param session the client session sending the channel message
  * @param message the channel message
  */
 public void handleChannelMessage(
     BigInteger channelRefId, ClientSession session, ByteBuffer message) {
   ChannelImpl.handleChannelMessage(channelRefId, session, message);
 }