com.cyngn.vertx.async.Action Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-util Show documentation
Show all versions of vertx-util Show documentation
A library for using opentsdb with vert.x
package com.cyngn.vertx.async;
/**
* Represents an action to perform.
*
* @author [email protected] (Jeremy Truelove) 10/15/14
*/
public interface Action {
/**
* Something you want executed
*/
void callback();
}