List of usage examples for io.vertx.core Verticle interface-usage
From source file com.tad.vertx.CDIVerticle.java
/** * Created by johnament on 3/21/15. */ public abstract class CDIVerticle implements Verticle { @Inject private Vertx vertx;
From source file net.kuujo.vertigo.component.Component.java
/** * Vertigo component. * * @author <a href="http://github.com/kuujo">Jordan Halterman</a> */ public interface Component extends Verticle, Serializable {
From source file org.eclipse.hono.authentication.AuthenticationService.java
/** * A service for validating credentials provided by a client in a SASL exchange. * */ public interface AuthenticationService extends Verticle {
From source file org.eclipse.hono.service.authorization.AuthorizationService.java
/** * Provides methods to add, remove or retrieve permissions on a resource for a given subject. */ public interface AuthorizationService extends Verticle { /**
From source file org.eclipse.hono.service.credentials.CredentialsService.java
/** * A service for keeping record of credentials for devices. * */ public interface CredentialsService extends Verticle {
From source file org.eclipse.hono.service.registration.RegistrationService.java
/** * A service for keeping record of device identities. * */ public interface RegistrationService extends Verticle {
From source file org.eclipse.hono.service.tenant.TenantService.java
/** * A service for keeping record of tenant information. * * @see <a href="https://www.eclipse.org/hono/api/tenant-api/">Tenant API</a> */ public interface TenantService extends Verticle {
From source file pt.davidafsilva.slacker.api.SlackerExecutor.java
/**
* <p>
* This interface defines the contract for the slacker executors as they're all bound to have
* a specific set of properties, such as an {@link #identifier()} and help {@link #description()}.
* </p>
* <p>