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

zmq.util.function.Supplier Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package zmq.util.function;

/**
 * Represents a supplier of results.
 *
 * 

There is no requirement that a new or distinct result be returned each * time the supplier is invoked. * *

This is a functional interface * whose functional method is {@link #get()}. * * @param the type of results supplied by this supplier * */ public interface Supplier { /** * Gets a result. * * @return a result */ T get(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy