public interface FailFastAware
Modifier and Type | Method and Description |
---|---|
Collection<Throwable> |
getExceptions()
If not in fail fast mode, will collect the exceptions and we can always query the exceptions
|
Collection<String> |
getMessages()
Any updates/messages that are not Error like
|
boolean |
isFailFast()
If true will exit on first exception else will collect exceptions
|
void |
setExceptions(Collection<Throwable> exceptions) |
void |
setFailFast(boolean failFast)
If true will exit on first exception else will collect exceptions
|
void |
setMessages(Collection<String> messages) |
void setFailFast(boolean failFast)
boolean isFailFast()
Collection<Throwable> getExceptions()
Collection<String> getMessages()
void setExceptions(Collection<Throwable> exceptions)
void setMessages(Collection<String> messages)
Copyright © 2018. All rights reserved.