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

org.telegram.mtproto.MTProtoCallback Maven / Gradle / Ivy

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

/**
 * Created with IntelliJ IDEA.
 * User: Ruben Bermudez
 * Date: 04.11.13
 * Time: 22:11
 */
public interface MTProtoCallback {
    void onSessionCreated(MTProto proto);

    void onAuthInvalidated(MTProto proto);

    void onApiMessage(byte[] message, MTProto proto);

    void onRpcResult(int callId, byte[] response, MTProto proto);

    void onRpcError(int callId, int errorCode, String message, MTProto proto);

    void onConfirmed(int callId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy