package com.yihu.hos.broker.util.funct; /** * Function that accept 2 objects and return nothing * @author QuanLA * * @param <A> * @param <B> */ public interface P2<A, B> { void e(A a, B b); }