mirror of
https://github.com/signalapp/Signal-Server
synced 2026-07-14 06:42:41 +01:00
12 lines
319 B
Java
12 lines
319 B
Java
/*
|
|
* Copyright 2013-2020 Signal Messenger, LLC
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
package org.whispersystems.dispatch;
|
|
|
|
public interface DispatchChannel {
|
|
void onDispatchMessage(String channel, byte[] message);
|
|
void onDispatchSubscribed(String channel);
|
|
void onDispatchUnsubscribed(String channel);
|
|
}
|