147148149150151152153154155156
try { os = _ws.startBinaryMessage(); _hOut.query(os, id, to, from, payload); } catch (IOException e) { throw new ProtocolException(e); } finally { IoUtil.close(os); } }
174175176177178179180181182183
try { os = _ws.startBinaryMessage(); _hOut.queryResult(os, id, to, from, payload); } catch (IOException e) { throw new ProtocolException(e); } finally { IoUtil.close(os); } }
203204205206207208209210211212
try { os = _ws.startBinaryMessage(); _hOut.queryError(os, id, to, from, payload, error); } catch (IOException e) { throw new ProtocolException(e); } finally { IoUtil.close(os); } }
101102103104105106107108
_hOut.message(_wsOut, to, from, payload); _wsOut.close(); } catch (IOException e) { throw new ProtocolException(e); } }
126127128129130131132133
_hOut.messageError(_wsOut, to, from, payload, error); _wsOut.close(); } catch (IOException e) { throw new ProtocolException(e); } }
151152153154155156157158
_hOut.query(_wsOut, id, to, from, payload); _wsOut.close(); } catch (IOException e) { throw new ProtocolException(e); } }
176177178179180181182183
_hOut.queryResult(_wsOut, id, to, from, payload); _wsOut.close(); } catch (IOException e) { throw new ProtocolException(e); } }
203204205206207208209210
_hOut.queryError(_wsOut, id, to, from, payload, error); _wsOut.close(); } catch (IOException e) { throw new ProtocolException(e); } }
949596979899100101102103
try { os = _ws.startBinaryMessage(); _hOut.message(os, to, from, payload); } catch (IOException e) { throw new ProtocolException(e); } finally { IoUtil.close(os); } }
120121122123124125126127128129
try { os = _ws.startBinaryMessage(); _hOut.messageError(os, to, from, payload, error); } catch (IOException e) { throw new ProtocolException(e); } finally { IoUtil.close(os); } }