20 lines
441 B
Protocol Buffer
20 lines
441 B
Protocol Buffer
/**
|
|
* Copyright (C) 2009-2013 Typesafe Inc. <http://www.typesafe.com>
|
|
*/
|
|
|
|
package akka.actor;
|
|
|
|
/******************************************
|
|
Compile with:
|
|
cd ./akka-remote/src/test/protocol
|
|
protoc ProtobufProtocol.proto --java_out ../java
|
|
cd ../../../..
|
|
./scripts/fix-protobuf.sh
|
|
*******************************************/
|
|
|
|
message MyMessage {
|
|
required uint64 id = 1;
|
|
required string name = 2;
|
|
required bool status = 3;
|
|
}
|
|
|