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

org.reactfx.value.ProxyVal Maven / Gradle / Ivy

There is a newer version: 1.11
Show newest version
package org.reactfx.value;

import java.util.function.Consumer;

import org.reactfx.ProxyObservable;

public abstract class ProxyVal
extends ProxyObservable, Consumer, Val>
implements Val {

    protected ProxyVal(Val underlying) {
        super(underlying);
    }
}