parent
e70298e624
commit
c04b675a1a
@ -1,9 +1,11 @@
|
|||||||
package org.thoughtcrime.securesms.mms;
|
package org.thoughtcrime.securesms.mms;
|
||||||
|
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
|
||||||
import org.thoughtcrime.securesms.transport.UndeliverableMessageException;
|
import org.thoughtcrime.securesms.transport.UndeliverableMessageException;
|
||||||
|
|
||||||
import ws.com.google.android.mms.pdu.SendConf;
|
import ws.com.google.android.mms.pdu.SendConf;
|
||||||
|
|
||||||
public interface OutgoingMmsConnection {
|
public interface OutgoingMmsConnection {
|
||||||
SendConf send(byte[] pduBytes) throws UndeliverableMessageException;
|
SendConf send(@NonNull byte[] pduBytes) throws UndeliverableMessageException;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue