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

net.snowflake.client.log.ArgSupplier Maven / Gradle / Ivy

There is a newer version: 3.18.0
Show newest version
/*
 * Copyright (c) 2012-2019 Snowflake Computing Inc. All rights reserved.
 */
package net.snowflake.client.log;

/**
 * An interface for representing lambda expressions that supply values to
 * placeholders in message formats.
 * 

* E.g., {@code Logger.debug("Value: {}", (ArgSupplier) () -> getValue());} */ @FunctionalInterface public interface ArgSupplier { Object get(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy