21 package org.opensplice.dds.topic;
29 private static final long serialVersionUID = 4755982116057745495L;
34 this.environment = environment;
38 "Invalid BuiltinTopicKey provided.");
40 this.value =
new int[value.length];
41 System.arraycopy(value, 0, this.value, 0, value.length);
46 return this.environment;
51 int[] result =
new int[this.value.length];
52 System.arraycopy(this.value, 0, result, 0, this.value.length);
60 "Illegal BuiltinTopicKey (null) provided.");
int [] getValue()
Get a copy of the value.
int [] getValue()
Get a copy of the value.
void copyFrom(BuiltinTopicKey src)
Overwrite the state of this object with that of the given object.
BuiltinTopicKeyImpl(OsplServiceEnvironment environment, int[] value)
ServiceEnvironment getEnvironment()
DDS implementations are rooted in this class, a concrete subclass of which can be instantiated based ...