congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
FlowProcessor.process
Code IndexAdd Tabnine to your IDE (free)

How to use
process
method
in
com.wizzardo.tools.collections.flow.FlowProcessor

Best Java code snippets using com.wizzardo.tools.collections.flow.FlowProcessor.process (Showing top 20 results out of 315)

origin: com.wizzardo.tools/tools-collections

  @Override
  protected void process() {
    FlowProcessor<Long, ?> child = this.child;
    for (long t : array) {
      if (stop)
        break;
      child.process(t);
    }
  }
};
origin: com.wizzardo.tools/tools-collections

  @Override
  protected void process() {
    FlowProcessor<Short, ?> child = this.child;
    for (short t : array) {
      if (stop)
        break;
      child.process(t);
    }
  }
};
origin: wizzardo/tools

  @Override
  protected void process() {
    FlowProcessor<Short, ?> child = this.child;
    for (short t : array) {
      if (stop)
        break;
      child.process(t);
    }
  }
};
origin: com.wizzardo.tools/tools-collections

  @Override
  public void process(B b) {
    if (counter >= number)
      child.process(b);
    else
      counter++;
  }
});
origin: com.wizzardo.tools/tools-collections

  @Override
  protected void process() {
    FlowProcessor<T, ?> child = this.child;
    for (T t : array) {
      if (stop)
        break;
      child.process(t);
    }
  }
};
origin: com.wizzardo.tools/tools-collections

  @Override
  protected void process() {
    FlowProcessor<Boolean, ?> child = this.child;
    for (boolean t : array) {
      if (stop)
        break;
      child.process(t);
    }
  }
};
origin: com.wizzardo.tools/tools-collections

  @Override
  public void process(T t) {
    if (counter >= number)
      child.process(t);
    else
      counter++;
  }
}
origin: com.wizzardo.tools/tools-collections

@Override
public void process(T t) {
  if (stopped)
    return;
  child.process(t);
}
origin: com.wizzardo.tools/tools-collections

  @Override
  protected void process() {
    FlowProcessor<Double, ?> child = this.child;
    for (double t : array) {
      if (stop)
        break;
      child.process(t);
    }
  }
};
origin: com.wizzardo.tools/tools-collections

  protected void stop(B b) {
    FlowProcessor<B, ?> child = this.child;
    if (child != null) {
      child.process(b);
    }
    stop();
  }
}
origin: com.wizzardo.tools/tools-collections

  @Override
  protected void process() {
    child.process(supplier.supply());
  }
};
origin: wizzardo/tools

  @Override
  public void process(B b) {
    consumer.consume(b);
    FlowProcessor<B, ?> child = this.child;
    if (child != null)
      child.process(b);
  }
});
origin: wizzardo/tools

  @Override
  public void process(T t) {
    if (filter.allow(t))
      child.process(t);
  }
}
origin: com.wizzardo.tools/tools-collections

  @Override
  public void process(B b) {
    consumer.consume(b);
    FlowProcessor<B, ?> child = this.child;
    if (child != null)
      child.process(b);
  }
});
origin: com.wizzardo.tools/tools-collections

  @Override
  public void process(T t) {
    consumer.consume(t);

    FlowProcessor<T, ?> child = this.child;
    if (child != null)
      child.process(t);
  }
}
origin: com.wizzardo.tools/tools-collections

  @Override
  public void process(T t) {
    consumer.consume(index++, t);

    FlowProcessor<T, ?> child = this.child;
    if (child != null)
      child.process(t);
  }
}
origin: com.wizzardo.tools/tools-collections

  @Override
  protected void process() {
    FlowProcessor<T, ?> child = this.child;
    for (Supplier<T> supplier : suppliers) {
      if (stop)
        break;
      child.process(supplier.supply());
    }
  }
};
origin: com.wizzardo.tools/tools-collections

void process(B b) {
  if (b == null) {
    if (!stop) {
      stop = true;
      onEnd();
    } else {
      throw new IllegalStateException("Flow has already ended");
    }
  } else {
    child.process(b);
  }
}
origin: com.wizzardo.tools/tools-collections

  @Override
  public void process(B b) {
    if (filter.allow(b)) {
      groups.put(b.getKey(), b);
      child.process(b);
    }
  }
});
origin: com.wizzardo.tools/tools-collections

@Override
protected void onEnd() {
  FlowProcessor<B, ?> child = this.child;
  if (child != null) {
    B result = result();
    if (result != null)
      child.process(result);
    onEnd(child);
  }
}
com.wizzardo.tools.collections.flowFlowProcessorprocess

Popular methods of FlowProcessor

  • <init>
  • getLast
  • onEnd
  • start
  • stop
  • then

Popular in Java

  • Creating JSON documents from java classes using gson
  • getContentResolver (Context)
  • runOnUiThread (Activity)
  • getApplicationContext (Context)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now