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

com.savl.ripple.client.async.Composed3 Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.savl.ripple.client.async;

abstract public class Composed3 extends ComposedOperation {
    @Override
    protected int numOps() {
        return 3;
    }

    @Override
    protected void finished() {
        on3(first, second, third);
    }

    abstract void on3(T1 first, T2 second, T3 third);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy