All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.up.runtime.deployment.Rotate Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.up.runtime.deployment;

import io.vertx.core.DeploymentOptions;
import io.vertx.core.eventbus.DeliveryOptions;

/*
 * Deployment options for agent and worker
 * 1) For defined options, you can set all the options by @Agent/@Worker
 * 2) For dynamic, you must configured the options in `vertx-`
 */
public interface Rotate {
    /*
     * Get agent options
     */
    DeploymentOptions spinAgent(Class clazz);

    /*
     * Get worker options
     */
    DeploymentOptions spinWorker(Class clazz);

    /*
     * Delivery options
     */
    DeliveryOptions spinDelivery();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy