Uses of Interface
io.atlassian.fugue.Checked.Supplier
-
Packages that use Checked.Supplier Package Description io.atlassian.fugue -
-
Uses of Checked.Supplier in io.atlassian.fugue
Methods in io.atlassian.fugue with parameters of type Checked.Supplier Modifier and Type Method Description static <A,E extends java.lang.Exception>
Try<A>Checked. delay(Checked.Supplier<A,E> s)Create a new delayed Try representing a delayed evaluation of a potentially exception throwing operation.static <A,E extends java.lang.Exception>
Try<A>Checked. now(Checked.Supplier<A,E> s)Create a new Try representing the result of a potentially exception throwing operation.static <A,E extends java.lang.Exception>
Try<A>Checked. of(Checked.Supplier<A,E> s)Deprecated.since 4.6 This is being replaced withChecked.now(Supplier)to make it clear that the supplier is evaluated immediately.
-