Examples of markAsReadOnly()


Examples of net.timewalker.ffmq3.common.message.StreamMessageImpl.markAsReadOnly()

    assertEquals("1.23",msg.readString());
   
    // Bytes
    msg = new StreamMessageImpl();
    msg.writeDouble(1.23);
    msg.markAsReadOnly();
    try { msg.readBytes(new byte[1]); fail("Should have failed"); } catch (MessageFormatException e) { /* OK */  }
    assertEquals(1.23,msg.readDouble(),0);
  }
 
  public void testStringConversion() throws Exception
View Full Code Here

Examples of net.timewalker.ffmq3.common.message.StreamMessageImpl.markAsReadOnly()

    StreamMessageImpl msg;
   
    // Boolean
    msg = new StreamMessageImpl();
    msg.writeString("foobar");
    msg.markAsReadOnly();
    assertFalse(msg.readBoolean());
   
    // Byte
    msg = new StreamMessageImpl();
    msg.writeString("foobar");
View Full Code Here

Examples of net.timewalker.ffmq3.common.message.StreamMessageImpl.markAsReadOnly()

    assertFalse(msg.readBoolean());
   
    // Byte
    msg = new StreamMessageImpl();
    msg.writeString("foobar");
    msg.markAsReadOnly();
    try { msg.readByte(); fail("Should have failed"); } catch (NumberFormatException e) { /* OK */  }
    assertEquals("foobar",msg.readString());
   
    // Short
    msg = new StreamMessageImpl();
View Full Code Here

Examples of net.timewalker.ffmq3.common.message.StreamMessageImpl.markAsReadOnly()

    assertEquals("foobar",msg.readString());
   
    // Short
    msg = new StreamMessageImpl();
    msg.writeString("foobar");
    msg.markAsReadOnly();
    try { msg.readShort(); fail("Should have failed"); } catch (NumberFormatException e) { /* OK */  }
    assertEquals("foobar",msg.readString());
   
    // Char
    msg = new StreamMessageImpl();
View Full Code Here

Examples of net.timewalker.ffmq3.common.message.StreamMessageImpl.markAsReadOnly()

    assertEquals("foobar",msg.readString());
   
    // Char
    msg = new StreamMessageImpl();
    msg.writeString("foobar");
    msg.markAsReadOnly();
    try { msg.readChar(); fail("Should have failed"); } catch (MessageFormatException e) { /* OK */  }
    assertEquals("foobar",msg.readString());
   
    // Int
    msg = new StreamMessageImpl();
View Full Code Here

Examples of net.timewalker.ffmq3.common.message.StreamMessageImpl.markAsReadOnly()

    assertEquals("foobar",msg.readString());
   
    // Int
    msg = new StreamMessageImpl();
    msg.writeString("foobar");
    msg.markAsReadOnly();
    try { msg.readInt(); fail("Should have failed"); } catch (NumberFormatException e) { /* OK */ }
    assertEquals("foobar",msg.readString());
   
    // Long
    msg = new StreamMessageImpl();
View Full Code Here

Examples of net.timewalker.ffmq3.common.message.StreamMessageImpl.markAsReadOnly()

    assertEquals("foobar",msg.readString());
   
    // Long
    msg = new StreamMessageImpl();
    msg.writeString("foobar");
    msg.markAsReadOnly();
    try { msg.readLong(); fail("Should have failed"); } catch (NumberFormatException e) { /* OK */ }
    assertEquals("foobar",msg.readString());
   
    // Float
    msg = new StreamMessageImpl();
View Full Code Here

Examples of net.timewalker.ffmq3.common.message.StreamMessageImpl.markAsReadOnly()

    assertTrue(msg.readBoolean());
   
    // Double
    msg = new StreamMessageImpl();
    msg.writeBoolean(true);
    msg.markAsReadOnly();
    try { msg.readDouble(); fail("Should have failed"); } catch (MessageFormatException e) { /* OK */ }
    assertTrue(msg.readBoolean());
   
    // String
    msg = new StreamMessageImpl();
View Full Code Here

Examples of net.timewalker.ffmq3.common.message.StreamMessageImpl.markAsReadOnly()

    assertTrue(msg.readBoolean());
   
    // String
    msg = new StreamMessageImpl();
    msg.writeBoolean(true);
    msg.markAsReadOnly();
    assertEquals("true",msg.readString());
   
    // Bytes
    msg = new StreamMessageImpl();
    msg.writeBoolean(true);
View Full Code Here

Examples of net.timewalker.ffmq3.common.message.StreamMessageImpl.markAsReadOnly()

    assertEquals("true",msg.readString());
   
    // Bytes
    msg = new StreamMessageImpl();
    msg.writeBoolean(true);
    msg.markAsReadOnly();
    try { msg.readBytes(new byte[1]); fail("Should have failed"); } catch (MessageFormatException e) { /* OK */  }
    assertTrue(msg.readBoolean());
  }

  public void testByteConversion() throws Exception
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.