Home | History | Annotate | Download | only in util

Lines Matching defs:Action

29     public interface Action {
43 * @param action Action to be invoked once full synchronization has been obtained.
45 public static void run(Object[] params, Set synchSet, Action action) {
46 run(params, synchSet.toArray(), action, 0);
52 * @param action Action to be invoked once full synchronization has been obtained.
54 public static void run(Object[] params, List synchList, Action action) {
55 run(params, synchList.toArray(), action, 0);
61 * @param action Action to be invoked once full synchronization has been obtained.
63 public static void run(Object[] params, Object[] synchArr, Action action) {
64 run(params, synchArr, action, 0);
71 * @param action
74 private static void run(Object[] params, Object[] synchArr, Action action, int depth) {
78 run(params, synchArr, action, ++depth);
80 action.run(params);
84 action.run(params);