sdk-common / com.tomtom.online.sdk.common.functional / CheckedSupplier

CheckedSupplier

@FunctionalInterface interface CheckedSupplier<R : Any!>

Represents base interface for all functions and function-like objects that return a value and have no arguments. The main difference between this interface and Supplier is that this interface allows its implementations to throw checked exceptions.

See Also
Supplier

Functions

get

abstract fun get(): R

Returns the Supplier result.