コード例 #1
0
 public static ApiTextMessageEx fromBytes(byte[] src) throws IOException {
   BserValues values = new BserValues(BserParser.deserialize(new DataInput(src, 0, src.length)));
   int key = values.getInt(1);
   byte[] content = values.getBytes(2);
   switch (key) {
     case 1:
       return Bser.parse(new ApiTextExMarkdown(), content);
     case 2:
       return Bser.parse(new ApiTextModernMessage(), content);
     case 3:
       return Bser.parse(new ApiTextCommand(), content);
     default:
       return new ApiTextMessageExUnsupported(key, content);
   }
 }
コード例 #2
0
 public static UpdateReactionsUpdate fromBytes(byte[] data) throws IOException {
   return Bser.parse(new UpdateReactionsUpdate(), data);
 }
コード例 #3
0
 public static RequestNotifyBannerView fromBytes(byte[] data) throws IOException {
   return Bser.parse(new RequestNotifyBannerView(), data);
 }
コード例 #4
0
 public static RequestShowDialog fromBytes(byte[] data) throws IOException {
   return Bser.parse(new RequestShowDialog(), data);
 }
コード例 #5
0
 public static UpdateGroupExtChanged fromBytes(byte[] data) throws IOException {
   return Bser.parse(new UpdateGroupExtChanged(), data);
 }
コード例 #6
0
 public static ResponseLoadAdminSettings fromBytes(byte[] data) throws IOException {
   return Bser.parse(new ResponseLoadAdminSettings(), data);
 }
コード例 #7
0
 public static RequestLoadArchived fromBytes(byte[] data) throws IOException {
   return Bser.parse(new RequestLoadArchived(), data);
 }
コード例 #8
0
 public static RequestPauseNotifications fromBytes(byte[] data) throws IOException {
   return Bser.parse(new RequestPauseNotifications(), data);
 }
コード例 #9
0
 public static RequestLeaveGroup fromBytes(byte[] data) throws IOException {
   return Bser.parse(new RequestLeaveGroup(), data);
 }
コード例 #10
0
 public static UpdateMessageReadByMe fromBytes(byte[] data) throws IOException {
   return Bser.parse(new UpdateMessageReadByMe(), data);
 }