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

io.github.sinri.keel.verticles.KeelVerticleImplPure 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.verticles;

import io.vertx.core.AbstractVerticle;
import io.vertx.core.Promise;

/**
 * @since 3.2.0
 */
public abstract class KeelVerticleImplPure extends AbstractVerticle implements KeelVerticle {
    @Override
    public final void start(Promise startPromise) {
        this.startAsPureKeelVerticle(startPromise);
    }

    @Override
    public final void start() {
        this.startAsPureKeelVerticle();
    }

    protected void startAsPureKeelVerticle(Promise startPromise) {
        startAsPureKeelVerticle();
        startPromise.complete();
    }

    abstract protected void startAsPureKeelVerticle();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy