aboutsummaryrefslogtreecommitdiff
path: root/src/java/com/cycling74/max/Executable.java
blob: c658d3f62e2f1fa1d54941ecebb5159beb3c301b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.cycling74.max;

/**
 * Defines an executable object. An object that implements a
 * Executable interface can later be used with a MaxClock or a
 * MaxSystem.deferLow for example since it defines the 
 * execute method. 
 */
public interface Executable {
	/**
	 * The method to execute.
	 */
	public void execute();
}