donky.microsoft.aspnet.signalr.client.MessageReceivedHandler Maven / Gradle / Ivy
/*
Copyright (c) Microsoft Open Technologies, Inc.
All Rights Reserved
See License.txt in the project root for license information.
*/
package donky.microsoft.aspnet.signalr.client;
import com.google.gson.JsonElement;
/**
* Interface to define a handler for a "Message received" event
*/
public interface MessageReceivedHandler {
/**
* Handles an incoming message
*
* @param json
* The received message
*/
void onMessageReceived(JsonElement json);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy