mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-25 05:27:42 +00:00
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;
|
|
}
|