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

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

Go to download

Makes exception handling concise and beautiful, yet architecturally clean and flexible.

There is a newer version: 1.9.1
Show newest version
// 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 Exception
	 *             if unable to complete
	 * @see CheckedExceptionHandler#fromLongSupplier(ThrowingLongSupplier)
	 * @see LongSupplier#getAsLong()
	 */
	long getAsLong() throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy