Bitwig Studio Control Surface API  4.0.1
OscConnection.java
1 package com.bitwig.extension.api.opensoundcontrol;
2 
3 import java.io.IOException;
4 
15 public interface OscConnection
16 {
20  void startBundle() throws IOException;
21 
33  void sendMessage(String address, Object ...args) throws IOException, OscInvalidArgumentTypeException;
34 
39  void endBundle() throws IOException;
40 }
void sendMessage(String address, Object ...args)