mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 02:55:23 +00:00
c04b675a1a
Fixes #2839 Closes #2840 // FREEBIE
12 lines
332 B
Java
12 lines
332 B
Java
package org.thoughtcrime.securesms.mms;
|
|
|
|
import android.support.annotation.NonNull;
|
|
|
|
import org.thoughtcrime.securesms.transport.UndeliverableMessageException;
|
|
|
|
import ws.com.google.android.mms.pdu.SendConf;
|
|
|
|
public interface OutgoingMmsConnection {
|
|
SendConf send(@NonNull byte[] pduBytes) throws UndeliverableMessageException;
|
|
}
|