*/
public void run() {
log.trace("StompConnect TCP consumer thread starting");
while (!isStopped()) {
try {
StompFrame frame = marshaller.unmarshal(dataIn);
inputHandler.onStompFrame(frame);
}
catch (SocketTimeoutException e) {
}
catch (InterruptedIOException e) {