public ChannelJoinRequest(
     UserId initiator,
     ChannelId channelId)
 {
     this.initiator = initiator;
     this.channelId = channelId;
 }
 public ChannelJoinConfirm(
     Result result,
     UserId initiator,
     ChannelId requested,
     ChannelId channelId)
 {
     this.result = result;
     this.initiator = initiator;
     this.requested = requested;
     this.channelId = channelId;
 }
 public SendDataIndication(
     UserId initiator,
     ChannelId channelId,
     DataPriority dataPriority,
     Segmentation segmentation,
     Asn1OctetString userData)
 {
     this.initiator = initiator;
     this.channelId = channelId;
     this.dataPriority = dataPriority;
     this.segmentation = segmentation;
     this.userData = userData;
 }
示例#4
0
 public ChannelJoinRequest()
 {
     this.initiator = null;
     this.channelId = null;
 }