1 package net.sf.josceleton.connection.impl.osc; 2 3 import net.sf.josceleton.core.api.async.Closeable; 4 5 import com.illposed.osc.OSCListener; 6 7 /** 8 * There is no removeListenerForAddress() as javaosc.OSCPortIn does not support it; oscConnection.stopListening instead. 9 */ 10 public interface OscPort extends Closeable { 11 12 void establish(); 13 14 void addListenerFor(OscAddress addressType, OSCListener listener); 15 16 }