114115116117118119120121
os.print(","); out.writeObject(value); out.flushBuffer(); os.write("]"); } catch (IOException e) { throw new ProtocolException(e); } }
170171172173174175176177
os.write(","); out.writeObject(error); out.flushBuffer(); os.write("]"); } catch (IOException e) { throw new ProtocolException(e); } }
232233234235236237238239
out.writeObject(value); out.flushBuffer(); os.print("]"); } catch (IOException e) { throw new ProtocolException(e); } }
290291292293294295296297
351352353354355356357358
out.writeObject(error); out.flushBuffer(); os.print("]"); } catch (IOException e) { throw new ProtocolException(e); } }
104105106107108109110111112113
try { out = _wsContext.startTextMessage(); _jsOut.message(out, to, from, payload); } catch (IOException e) { throw new ProtocolException(e); } finally { IoUtil.close(out); } }
131132133134135136137138139140
try { out = _wsContext.startTextMessage(); _jsOut.messageError(out, to, from, payload, error); } catch (IOException e) { throw new ProtocolException(e); } finally { IoUtil.close(out); } }
158159160161162163164165166167
try { out = _wsContext.startTextMessage(); _jsOut.query(out, id, to, from, payload); } catch (IOException e) { throw new ProtocolException(e); } finally { IoUtil.close(out); } }
185186187188189190191192193194
try { out = _wsContext.startTextMessage(); _jsOut.queryResult(out, id, to, from, payload); } catch (IOException e) { throw new ProtocolException(e); } finally { IoUtil.close(out); } }
214215216217218219220221222223
try { out = _wsContext.startTextMessage(); _jsOut.queryError(out, id, to, from, payload, error); } catch (IOException e) { throw new ProtocolException(e); } finally { IoUtil.close(out); } }