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

org.fisco.bcos.sdk.amop.AmopResponseCallback Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
package org.fisco.bcos.sdk.amop;

import io.netty.util.Timeout;

public abstract class AmopResponseCallback {
    private Timeout timeout;

    public Timeout getTimeout() {
        return timeout;
    }

    public void setTimeout(Timeout timeout) {
        this.timeout = timeout;
    }

    public abstract void onResponse(AmopResponse response);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy