Example usage for io.vertx.core AsyncResult interface-usage

List of usage examples for io.vertx.core AsyncResult interface-usage

Introduction

In this page you can find the example usage for io.vertx.core AsyncResult interface-usage.

Usage

From source file com.baldmountain.depot.ConcreteAsyncResult.java

/**
 * @author Geoffrey Clements
 *
 * The MIT License (MIT)
 *
 * Copyright (c) 2015 Geoffrey Clements

From source file io.zatarox.vertx.async.utils.DefaultAsyncResult.java

public final class DefaultAsyncResult<T> implements AsyncResult<T> {

    private final Throwable cause;
    private final T result;

    public DefaultAsyncResult(Throwable cause, T result) {