mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-05-01 06:03:18 +01:00
streaming media
// FREEBIE
This commit is contained in:
@@ -123,6 +123,7 @@ public class PduPart {
|
||||
|
||||
private boolean isEncrypted;
|
||||
private boolean isPendingPush;
|
||||
private long dataSize;
|
||||
|
||||
/**
|
||||
* Empty Constructor.
|
||||
@@ -134,12 +135,21 @@ public class PduPart {
|
||||
public void setEncrypted(boolean isEncrypted) {
|
||||
this.isEncrypted = isEncrypted;
|
||||
}
|
||||
|
||||
|
||||
public boolean getEncrypted() {
|
||||
return isEncrypted;
|
||||
}
|
||||
|
||||
public void setPendingPush(boolean isPendingPush) {
|
||||
public void setDataSize(long dataSize) {
|
||||
this.dataSize = dataSize;
|
||||
}
|
||||
|
||||
public long getDataSize() {
|
||||
return this.dataSize;
|
||||
}
|
||||
|
||||
|
||||
public void setPendingPush(boolean isPendingPush) {
|
||||
this.isPendingPush = isPendingPush;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user