1) Make the radio change a synchronous action with a timeout. 2) Move the send logic into an MmsTransport, in preparation for UniversalTransport composition. 3) Move the download logic into a synchronous receiver.
7 lines
151 B
Java
7 lines
151 B
Java
package org.thoughtcrime.securesms.mms;
|
|
|
|
public class MmsRadioException extends Throwable {
|
|
public MmsRadioException(String s) {
|
|
super(s);
|
|
}
|
|
}
|