public void send(byte[] b) throws IOException, ISOException, VetoException { if (!isConnected()) throw new ISOException("unconnected ISOChannel"); LogEvent evt = new LogEvent(this, "loopback-send", b); queue.enqueue(b); cnt[TX]++; notifyObservers(); Logger.log(evt); }
public void send(ISOMsg m) throws IOException, ISOException, VetoException { if (!isConnected()) throw new ISOException("unconnected ISOChannel"); LogEvent evt = new LogEvent(this, "loopback-send", m); m = applyOutgoingFilters(m, evt); queue.enqueue(m); cnt[TX]++; notifyObservers(); Logger.log(evt); }