donky.microsoft.aspnet.signalr.client.Action 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;
/**
* Represents a generic executable action
*
* @param
* The action parameter type
*/
public interface Action {
/**
* Executes the action
*
* @param obj
* The action parameter
* @throws Exception
* An Exception is thrown if there is an error executing the
* action
*/
public void run(E obj) throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy