mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-02 22:51:55 +00: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