MCPcopy Create free account
hub / github.com/OpenDDS/OpenDDS / MessageStateWritable

Class MessageStateWritable

java/jms/src/org/opendds/jms/MessageStateWritable.java:19–35  ·  view source on GitHub ↗

Message body state where the message is eradable and writable. A freshly created or clearBody()-ed TextMessage, ObjectMessage and MapMessage that is in this state. @author Weiqi Gao

Source from the content-addressed store, hash-verified

17 * @author Weiqi Gao
18 */
19public class MessageStateWritable implements MessageState {
20 public void checkReadable() throws MessageNotReadableException {
21 // No-op
22 }
23
24 public void checkWritable() {
25 // No-op
26 }
27
28 public void makeReadable() {
29 // No-op
30 }
31
32 public void makeWritable() {
33 // No-op
34 }
35}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected