public interface Verifier
used by If
callbacks to get a decision. A
Verifier
is expected to collect information by
whatever means until finally its ok(monq.jfa.DfaRun)
method is called.
Modifier and Type | Method and Description |
---|---|
boolean |
ok(DfaRun r)
classes implementing this interface are expected to collect
information over time.
|
boolean ok(DfaRun r)
classes implementing this interface are expected to collect
information over time. At any time they may be asked whether the
information is good or bad, true or
false, etc. The meaning of the return value
true
depends solely on the implementation.
Typically a Verifier
is called from If
and will rely on additional information found in DfaRun.clientData
. See for example Count.ge(int)
.