19 lines
361 B
Protocol Buffer
19 lines
361 B
Protocol Buffer
/**
|
|
* Copyright (C) 2009 Scalable Solutions.
|
|
*/
|
|
|
|
package se.scalablesolutions.akka.api;
|
|
|
|
/*
|
|
Compile with:
|
|
cd ./fun-test-java/src/test/java
|
|
protoc se/scalablesolutions/akka/api/ProtobufProtocol.proto --java_out .
|
|
*/
|
|
|
|
option optimize_for = SPEED;
|
|
|
|
message ProtobufPOJO {
|
|
required uint64 id = 1;
|
|
required string name = 2;
|
|
required bool status = 3;
|
|
}
|