本文整理匯總了Java中org.whispersystems.textsecure.internal.push.PushAttachmentData類的典型用法代碼示例。如果您正苦於以下問題:Java PushAttachmentData類的具體用法?Java PushAttachmentData怎麽用?Java PushAttachmentData使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
PushAttachmentData類屬於org.whispersystems.textsecure.internal.push包,在下文中一共展示了PushAttachmentData類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createAttachmentPointer
import org.whispersystems.textsecure.internal.push.PushAttachmentData; //導入依賴的package包/類
private AttachmentPointer createAttachmentPointer(TextSecureAttachmentStream attachment)
throws IOException
{
byte[] attachmentKey = Util.getSecretBytes(64);
PushAttachmentData attachmentData = new PushAttachmentData(attachment.getContentType(),
attachment.getInputStream(),
attachment.getLength(),
attachmentKey);
long attachmentId = socket.sendAttachment(attachmentData);
return AttachmentPointer.newBuilder()
.setContentType(attachment.getContentType())
.setId(attachmentId)
.setKey(ByteString.copyFrom(attachmentKey))
.build();
}
示例2: createAttachmentPointer
import org.whispersystems.textsecure.internal.push.PushAttachmentData; //導入依賴的package包/類
private PushMessageProtos.PushMessageContent.AttachmentPointer createAttachmentPointer(TextSecureAttachmentStream attachment) throws IOException {
byte[] attachmentKey = org.whispersystems.textsecure.internal.util.Util.getSecretBytes(64);
PushAttachmentData attachmentData = new PushAttachmentData(attachment.getContentType(), attachment.getInputStream(), attachment.getLength(), attachmentKey);
long attachmentId = this.socket.sendAttachment(attachmentData);
return PushMessageProtos.PushMessageContent.AttachmentPointer.newBuilder().setContentType(attachment.getContentType()).setId(attachmentId).setKey(ByteString.copyFrom(attachmentKey)).build();
}