PropertyResultNotify¶
interface val PropertyResultNotify
Public Functions¶
fail¶
called when a Property has failed (did not hold for a sample) or when execution errored.
Does not necessarily denote completeness of the property execution,
see complete(success: Bool) for that purpose.
fun box fail(
  msg: String val)
: None val
Parameters¶
- msg: String val
Returns¶
- None val
complete¶
called when the Property execution is complete signalling whether it was successful or not.
fun box complete(
  success: Bool val)
: None val
Parameters¶
- success: Bool val
Returns¶
- None val