456457458459460461462463
throws JMSException { try { getWriteStream().write(b ? 1 : 0); } catch (IOException e) { throw new JmsExceptionWrapper(e); } }
469470471472473474475476
throws JMSException { try { getWriteStream().write(b); } catch (IOException e) { throw new JmsExceptionWrapper(e); } }
485486487488489490491492
WriteStream ws = getWriteStream(); ws.write(s >> 8); ws.write(s); } catch (IOException e) { throw new JmsExceptionWrapper(e); } }
503504505506507508509510
ws.write(i >> 24); ws.write(i >> 16); ws.write(i >> 8); ws.write(i); } catch (IOException e) { throw new JmsExceptionWrapper(e); } }
525526527528529530531532
ws.write((int) (l >> 24)); ws.write((int) (l >> 16)); ws.write((int) (l >> 8)); ws.write((int) l); } catch (IOException e) { throw new JmsExceptionWrapper(e); } }
598599600601602603604605
out.write(0x80 + ((ch >> 6) & 0x3f)); out.write(0x80 + (ch & 0x3f)); } } } catch (IOException e) { throw new JmsExceptionWrapper(e); } }