mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 18:45:19 +00:00
a3f1d9cdfd
1) Break out appropriate components. 2) Switch the incoming pipeline from SendReceiveService to the JobManager.
9 lines
240 B
Java
9 lines
240 B
Java
package org.thoughtcrime.securesms;
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
|
|
public interface PassphraseRequiredActivity {
|
|
public void onMasterSecretCleared();
|
|
public void onNewMasterSecret(MasterSecret masterSecret);
|
|
}
|