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

com.machinezoo.noexception.throwing.ThrowingLongSupplier Maven / Gradle / Ivy

// Part of NoException: https://noexception.machinezoo.com
// Generated code. Edit generate.py instead.
package com.machinezoo.noexception.throwing;

import java.util.function.*;
import com.machinezoo.noexception.*;

/**
 * Variation of {@link LongSupplier} that allows throwing checked exceptions.
 * {@code ThrowingLongSupplier} is usually implemented by a lambda
 * and passed to {@link CheckedExceptionHandler#fromLongSupplier(ThrowingLongSupplier)}.
 * See noexception tutorial.
 * 
 * @see CheckedExceptionHandler#fromLongSupplier(ThrowingLongSupplier)
 * @see LongSupplier
 */
@FunctionalInterface
public interface ThrowingLongSupplier {
	/**
	 * Variation of {@link LongSupplier#getAsLong()} that allows throwing checked exceptions.
	 * 
	 * @return see {@link LongSupplier#getAsLong()}
	 * @throws Throwable
	 *             if unable to complete
	 * @see CheckedExceptionHandler#fromLongSupplier(ThrowingLongSupplier)
	 * @see LongSupplier#getAsLong()
	 */
	long getAsLong() throws Throwable;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy