P2.java 200 B

123456789101112
  1. package com.yihu.hos.broker.util.funct;
  2. /**
  3. * Function that accept 2 objects and return nothing
  4. * @author QuanLA
  5. *
  6. * @param <A>
  7. * @param <B>
  8. */
  9. public interface P2<A, B> {
  10. void e(A a, B b);
  11. }