Answers for "Custom Filter Cascading"

0

Custom Filter Cascading

public class SomeFilter extends BaseOperation implements Filter
  {
  public boolean isRemove( FlowProcess flowProcess, FilterCall call )
    {
    // get the arguments TupleEntry
    TupleEntry arguments = call.getArguments();

    // initialize the return result
    boolean isRemove = false;

    // test the argument values and set isRemove accordingly

    return isRemove;
    }
  }
Posted by: Guest on September-28-2021

Code answers related to "Custom Filter Cascading"

Browse Popular Code Answers by Language