optimizations to IntPairMap.java
[sbp.git] / src / edu / berkeley / sbp / util / Invokable.java
index 0d16ea9..a295f96 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2006 all rights reserved; see LICENSE file for BSD-style license
+// Copyright 2006-2007 all rights reserved; see LICENSE file for BSD-style license
 
 package edu.berkeley.sbp.util;
 import edu.berkeley.sbp.util.*;
@@ -8,6 +8,6 @@ import java.util.*;
 import java.lang.reflect.*;
 import java.lang.ref.*;
 
-public interface Invokable<A,B> {
-    public void invoke(A a, B b);
+public interface Invokable<A,B,C> {
+    public void invoke(A a, B b, C c);
 }