2014-09-16 23:21:41 +00:00
|
|
|
package org.thoughtcrime.securesms.mms;
|
|
|
|
|
2015-03-31 17:41:23 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2015-03-30 19:34:57 +00:00
|
|
|
import android.support.annotation.Nullable;
|
2015-03-31 17:41:23 +00:00
|
|
|
|
2014-12-29 22:01:02 +00:00
|
|
|
import org.thoughtcrime.securesms.transport.UndeliverableMessageException;
|
2014-09-16 23:21:41 +00:00
|
|
|
|
|
|
|
import ws.com.google.android.mms.pdu.SendConf;
|
|
|
|
|
2014-12-29 22:01:02 +00:00
|
|
|
public interface OutgoingMmsConnection {
|
2015-03-30 19:34:57 +00:00
|
|
|
@Nullable SendConf send(@NonNull byte[] pduBytes) throws UndeliverableMessageException;
|
2014-09-16 23:21:41 +00:00
|
|
|
}
|