1
0
mirror of https://github.com/fabianonline/telegram_backup.git synced 2024-05-29 00:29:23 +00:00
telegram_backup/src/org/telegram/mtproto/schedule/PreparedPackage.java

38 lines
784 B
Java

package org.telegram.mtproto.schedule;
/**
* Created with IntelliJ IDEA.
* User: ex3ndr
* Date: 03.11.13
* Time: 19:59
*/
public class PreparedPackage {
private boolean isHighPriority;
private int seqNo;
private long messageId;
private byte[] content;
public PreparedPackage(int seqNo, long messageId, byte[] content, boolean isHighPriority) {
this.seqNo = seqNo;
this.messageId = messageId;
this.content = content;
this.isHighPriority = isHighPriority;
}
public boolean isHighPriority() {
return isHighPriority;
}
public int getSeqNo() {
return seqNo;
}
public long getMessageId() {
return messageId;
}
public byte[] getContent() {
return content;
}
}