Jagger
 All Classes Namespaces Files Functions Variables Groups Pages
boolean com.griddynamics.jagger.engine.e1.collector.NotNullResponseValidator< Q, E, R >.validate ( query,
endpoint,
result,
long  duration 
)
virtual

Return false if invocation result is null.

Author
Dmitry Kotlyarov
Parameters
query- the query of current invocation
endpoint- the endpoint of current invocation
result- the result of invocation
duration- the duration of invocation
Returns
false if invocation result is null

Implements com.griddynamics.jagger.engine.e1.collector.ResponseValidator< Q, E, R >.

56  {
57  return result != null;
58  }