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