All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.telegram.mtproto.transport.TcpContextCallback Maven / Gradle / Ivy

There is a newer version: 66.2
Show newest version
package org.telegram.mtproto.transport;

/**
 * Created: 13.08.13 15:35
 */
public interface TcpContextCallback {
    void onRawMessage(byte[] data, int offset, int len, TcpContext context);

    void onError(int errorCode, TcpContext context);

    void onChannelBroken(TcpContext context);

    void onFastConfirm(int hash);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy