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
|
|
|
|
2014-12-29 14:01:02 -08:00
|
|
|
import org.thoughtcrime.securesms.transport.UndeliverableMessageException;
|
2014-09-16 16:21:41 -07:00
|
|
|
|
|
|
|
import ws.com.google.android.mms.pdu.SendConf;
|
|
|
|
|
2014-12-29 14:01:02 -08:00
|
|
|
public interface OutgoingMmsConnection {
|
2016-02-05 16:10:33 -08:00
|
|
|
@Nullable SendConf send(@NonNull byte[] pduBytes, int subscriptionId) throws UndeliverableMessageException;
|
2014-09-16 16:21:41 -07:00
|
|
|
}
|