List of usage examples for java.util.function Supplier interface-usage
From source file co.runrightfast.vertx.orientdb.config.OServerSideScriptInterpreterConfig.java
/** * * @author alfio */ public class OServerSideScriptInterpreterConfig implements Supplier<OServerHandlerConfiguration> {
From source file org.springframework.cloud.function.web.source.HttpSupplier.java
/**
* A {@link Supplier} that pulls data from an HTTP endpoint. Repeatedly polls the endpoint
* until a non-2xx response is received, at which point it will repeatedly produced a
* Mono at 1 sec intervals until the next 2xx response.
*
* @author Dave Syer
From source file co.runrightfast.vertx.orientdb.config.OHazelcastPluginConfig.java
/** * * @author alfio */ public final class OHazelcastPluginConfig implements Supplier<OServerHandlerConfiguration> {
From source file edu.si.sidora.tabularmetadata.formats.TabularFormat.java
/** * Represents a format for tabular data. * * @author A. Soroka */ public interface TabularFormat extends Supplier<CSVFormat> {
From source file org.codice.solr.factory.impl.HttpClientBuilder.java
public class HttpClientBuilder implements Supplier<org.apache.http.impl.client.HttpClientBuilder> { private static final String KEY_STORE_PASS = "javax.net.ssl.keyStorePassword"; private static final String TRUST_STORE = "javax.net.ssl.trustStore"; private static final String TRUST_STORE_PASS = "javax.net.ssl.trustStorePassword"; private static final String KEY_STORE = "javax.net.ssl.keyStore";
From source file org.apache.pulsar.broker.admin.impl.SinkBase.java
public class SinkBase extends AdminResource implements Supplier<WorkerService> { private final SinkImpl sink; public SinkBase() { this.sink = new SinkImpl(this);
From source file org.apache.pulsar.broker.admin.impl.SourceBase.java
public class SourceBase extends AdminResource implements Supplier<WorkerService> { private final SourceImpl source; public SourceBase() { this.source = new SourceImpl(this);
From source file co.runrightfast.vertx.orientdb.config.OAutomaticBackupConfig.java
/**
*
* @author alfio
*/
@Builder
@ToString
From source file com.epam.dlab.backendapi.core.commands.CommandExecutorMockAsync.java
@Slf4j public class CommandExecutorMockAsync implements Supplier<Boolean> { private static final String JSON_FILE_ENDING = ".json"; private static final ObjectMapper MAPPER = new ObjectMapper() .configure(JsonParser.Feature.AUTO_CLOSE_SOURCE, true)
From source file org.springframework.cloud.function.context.ContextFunctionCatalogAutoConfiguration.java
class ProxySupplier extends ProxyWrapper<Supplier<Flux<?>>> implements Supplier<Flux<String>> { @Autowired public ProxySupplier(ObjectMapper mapper) { super(mapper); }