aboutsummaryrefslogtreecommitdiff
path: root/src/java/com/cycling74/max/MessageReceiver.java
blob: 3310de0ce98954a31ce055163ce75f9060abe8c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.cycling74.max;

/**
 * This is a utility callback class that can be used to notify background job.
 */
public interface MessageReceiver {
    /**
     * Called when a event has occured.
     */
    public void messageReceived(Object src, int messageId, Object data);
}