You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* @return true if result is sent successfully.
*/
boolean success();
/**
* @return true if result is sent and this is the last result.
*/
boolean complete();
/**
* If failure is true then cause will not be null.
*
* @return true if result is sent and result outcome is a failure.
*/
boolean failure();
The above should be
/**
* @return true if result is sent successfully.
*/
boolean wasSuccessful();
/**
* @return true if result is sent and this is the last result.
*/
boolean isComplete();
/**
* If failure is true then cause will not be null.
*
* @return true if result is sent and result outcome is a failure.
*/
boolean wasFailure();
Work on wording. Look at prior art.
The text was updated successfully, but these errors were encountered:
The above should be
Work on wording. Look at prior art.
The text was updated successfully, but these errors were encountered: