Interface IgniteInClosure<E>

Type Parameters:
E - Type of closure argument.
All Superinterfaces:
Serializable
All Known Implementing Classes:
GridCompoundFuture

public interface IgniteInClosure<E> extends Serializable
Closure with one in-parameter and void return type.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    apply(E e)
    Closure body.
  • Method Details

    • apply

      void apply(E e)
      Closure body.
      Parameters:
      e - Closure argument.