Interface ParallelProcedure<E>

All Superinterfaces:
Consumer<E>
All Known Implementing Classes:
ParallelProcedure.Default

public interface ParallelProcedure<E>
extends Consumer<E>
  • Method Details

    • accept

      void accept​(E element)
      Applies a wrapped logic by delegating its execution to another thread.
      Specified by:
      accept in interface Consumer<E>
      Parameters:
      element - the element to have the logic applied to.