view src/main/java/alice/test/codesegment/remote/RemoteStartCodeSegment.java @ 655:1c93e82e05c6 default tip

fix timestamp
author suruga
date Sat, 17 Feb 2018 00:33:00 +0900
parents e321c5ec9b58
children
line wrap: on
line source

package alice.test.codesegment.remote;

import alice.codesegment.CodeSegment;
import org.msgpack.type.ValueFactory;

public class RemoteStartCodeSegment extends CodeSegment {

    @Override
    public void run() {
        RemoteIncrement cs = new RemoteIncrement();
        ods.put("compressedremote", "num", 0);
        ods.put("num2",0);

        ods.put("remote","null-value", ValueFactory.createNilValue());
        ods.put("remote-null-value", ValueFactory.createNilValue());

        new RemoteIncrement1();
    }
}