OSCListener.java :  » Remote » droid-osc » com » illposed » osc » Android Open Source

Android Open Source » Remote » droid osc 
droid osc » com » illposed » osc » OSCListener.java
package com.illposed.osc;

import java.util.Date;

/**
 * Interface for things that listen for incoming OSC Messages
 * <p>
 * Copyright (C) 2003-2006, C. Ramakrishnan / Illposed Software.
 * All rights reserved.
 * <p>
 * See license.txt (or license.rtf) for license information.
 *
 * @author Chandrasekhar Ramakrishnan
 * @version 1.0
 */
public interface OSCListener {
  
  /**
   * Accept an incoming OSCMessage
   * @param time     The time this message is to be executed. null means execute now
   * @param message  The message to execute.
   */
  public void acceptMessage(Date time, OSCMessage message);

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.