mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-02 22:45:17 +00:00
2a644437fb
No sticker packs are available for use yet, but we now have the latent ability to send and receive.
12 lines
351 B
Java
12 lines
351 B
Java
package org.thoughtcrime.securesms.database;
|
|
|
|
import android.database.ContentObserver;
|
|
import android.support.annotation.NonNull;
|
|
|
|
import java.io.Closeable;
|
|
|
|
public interface ObservableContent extends Closeable {
|
|
void registerContentObserver(@NonNull ContentObserver observer);
|
|
void unregisterContentObserver(@NonNull ContentObserver observer);
|
|
}
|