Package org.eclipse.handly.util
Interface IStatusAcceptor
-
- All Superinterfaces:
java.util.function.Consumer<org.eclipse.core.runtime.IStatus>
public interface IStatusAcceptor extends java.util.function.Consumer<org.eclipse.core.runtime.IStatus>
AcceptsIStatus
objects.- Since:
- 1.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
accept(org.eclipse.core.runtime.IStatus status)
Accepts the given status object.default void
done()
Informs this acceptor that there are no more status objects to accept.
-
-
-
Method Detail
-
accept
void accept(org.eclipse.core.runtime.IStatus status)
Accepts the given status object.- Specified by:
accept
in interfacejava.util.function.Consumer<org.eclipse.core.runtime.IStatus>
- Parameters:
status
- notnull
-
done
default void done()
Informs this acceptor that there are no more status objects to accept.Default implementation does nothing.
-
-