321322323324325326327328
{ throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
334335336337338339340341
{ return dis.read(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
347348349350351352353354
{ return dis.read(value, 0, length); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
360361362363364365366367
{ dos.writeBoolean(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
373374375376377378379380
{ dos.writeByte(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
386387388389390391392393
{ dos.writeShort(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
399400401402403404405406
{ dos.writeChar(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
412413414415416417418419
{ dos.writeInt(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
425426427428429430431432
{ dos.writeLong(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }
438439440441442443444445
{ dos.writeFloat(value); } catch (IOException e) { throw new MessagingJMSException("IOException", e); } }