Exemplo n.º 1
0
 @Override
 protected void readInternal(ObjectDataInput in) throws IOException {
   super.readInternal(in);
   attributeName = in.readUTF();
   ordered = in.readBoolean();
 }
Exemplo n.º 2
0
 @Override
 protected void writeInternal(ObjectDataOutput out) throws IOException {
   super.writeInternal(out);
   out.writeUTF(attributeName);
   out.writeBoolean(ordered);
 }
Exemplo n.º 3
0
 @Override
 public void innerBeforeRun() throws Exception {
   super.innerBeforeRun();
   recordStore = mapServiceContext.getPartitionContainer(getPartitionId()).getRecordStore(name);
 }
 @Override
 public void innerBeforeRun() throws Exception {
   super.innerBeforeRun();
   this.recordStore = getRecordStore();
 }
Exemplo n.º 5
0
  @Override
  protected void toString(StringBuilder sb) {
    super.toString(sb);

    sb.append(", name=").append(name);
  }