org.telegram.mtproto.transport.TcpContextCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegramapi Show documentation
Show all versions of telegramapi Show documentation
Java library to create Telegram Clients
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