mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-03 20:35:40 +00:00
34 lines
676 B
Java
34 lines
676 B
Java
package org.whispersystems.textsecure.api.messages;
|
|
|
|
import java.io.InputStream;
|
|
|
|
public class TextSecureAttachmentStream extends TextSecureAttachment {
|
|
|
|
private final InputStream inputStream;
|
|
private final long length;
|
|
|
|
public TextSecureAttachmentStream(InputStream inputStream, String contentType, long length) {
|
|
super(contentType);
|
|
this.inputStream = inputStream;
|
|
this.length = length;
|
|
}
|
|
|
|
@Override
|
|
public boolean isStream() {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean isPointer() {
|
|
return false;
|
|
}
|
|
|
|
public InputStream getInputStream() {
|
|
return inputStream;
|
|
}
|
|
|
|
public long getLength() {
|
|
return length;
|
|
}
|
|
}
|