com.illposed.osc
Interface OSCListener


public interface OSCListener

The listener interface for receiving OSC events. The class that is interested in processing a OSC event implements this interface, and the object created with that class is registered with a component using the component's addOSCListener method. When the OSC event occurs, that object's appropriate method is invoked.

Author:
cramakrishnan Copyright (C) 2003, C. Ramakrishnan / Auracle All rights reserved. See license.txt (or license.rtf) for license information. Interface for things that listen for incoming OSC Messages

Method Summary
 void acceptMessage(java.util.Date time, OSCMessage message)
          Accept an incoming OSCMessage.
 

Method Detail

acceptMessage

void acceptMessage(java.util.Date time,
                   OSCMessage message)
Accept an incoming OSCMessage.

Parameters:
time - the time this message is to be executed. null means execute now
message - the message