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

io.github.sinri.keel.maids.gatling.Bullet Maven / Gradle / Ivy

Go to download

A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.

The newest version!
package io.github.sinri.keel.maids.gatling;

import io.vertx.core.AsyncResult;
import io.vertx.core.Future;

import java.util.Set;

/**
 * @since 2.9.1
 */
abstract public class Bullet {
    abstract public String bulletID();

    abstract protected Set exclusiveLockSet();

    abstract protected Future fire();

    abstract protected Future ejectShell(AsyncResult fired);
}