com.petersamokhin.bots.sdk.callbacks.messages.OnTypingCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vk-bot-java-sdk Show documentation
Show all versions of vk-bot-java-sdk Show documentation
SDK for interacting with VK.com API
package com.petersamokhin.bots.sdk.callbacks.messages;
import com.petersamokhin.bots.sdk.callbacks.Callback;
/**
* Callback will be called when user started typing
*/
public interface OnTypingCallback extends Callback {
void OnTyping(Integer userId);
}