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

org.mockserver.maven.SettableFuture Maven / Gradle / Ivy

There is a newer version: 5.15.0
Show newest version
package org.mockserver.maven;

import com.google.common.util.concurrent.AbstractFuture;

public class SettableFuture extends AbstractFuture {

    private SettableFuture() {
    }

    public static  SettableFuture create() {
        return new SettableFuture();
    }

    @Override
    public boolean set(V value) {
        return super.set(value);
    }

    @Override
    public boolean setException(Throwable throwable) {
        return super.setException(throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy