2014-09-16 16:21:41 -07:00
|
|
|
package org.thoughtcrime.securesms.mms;
|
|
|
|
|
2015-03-31 10:41:23 -07:00
|
|
|
import android.support.annotation.NonNull;
|
2015-03-30 12:34:57 -07:00
|
|
|
import android.support.annotation.Nullable;
|
2015-03-31 10:41:23 -07:00
|
|
|
|
2017-05-08 15:32:59 -07:00
|
|
|
import com.google.android.mms.pdu_alt.SendConf;
|
|
|
|
|
2014-12-29 14:01:02 -08:00
|
|
|
import org.thoughtcrime.securesms.transport.UndeliverableMessageException;
|
2014-09-16 16:21:41 -07:00
|
|
|
|
|
|
|
|
2014-12-29 14:01:02 -08:00
|
|
|
public interface OutgoingMmsConnection {
|
2017-05-08 15:32:59 -07:00
|
|
|
@Nullable
|
|
|
|
SendConf send(@NonNull byte[] pduBytes, int subscriptionId) throws UndeliverableMessageException;
|
2014-09-16 16:21:41 -07:00
|
|
|
}
|