111112113114115116117118119120121
writeType(os, value); os.print("\""); os.print(","); out.writeObject(value); out.flushBuffer(); os.write("]"); } catch (IOException e) { throw new ProtocolException(e); } }
164165166167168169170171172173174
writeType(os, value); os.write("\","); out.writeObject(value); out.flushBuffer(); os.write(","); out.writeObject(error); out.flushBuffer(); os.write("]"); } catch (IOException e) {
167168169170171172173174175176177
out.writeObject(value); out.flushBuffer(); os.write(","); out.writeObject(error); out.flushBuffer(); os.write("]"); } catch (IOException e) { throw new ProtocolException(e); } }
228229230231232233234235236237238
os.write(",\""); writeType(os, value); os.print("\","); out.writeObject(value); out.flushBuffer(); os.print("]"); } catch (IOException e) { throw new ProtocolException(e); }
286287288289290291292293294295296
343344345346347348349350351352353
os.write(",\""); writeType(os, payload); os.print("\","); out.writeObject(payload); out.flushBuffer(); os.print(","); out.writeObject(error); out.flushBuffer();
347348349350351352353354355356357
out.writeObject(payload); out.flushBuffer(); os.print(","); out.writeObject(error); out.flushBuffer(); os.print("]"); } catch (IOException e) { throw new ProtocolException(e); }