| 281 | } |
| 282 | |
| 283 | static class BenchProtocol extends Protocol<BValue> { |
| 284 | public static final int ProtocolId_ = Bean.hash32(BenchProtocol.class.getName()); |
| 285 | |
| 286 | @Override |
| 287 | public int getModuleId() { |
| 288 | return 0; |
| 289 | } |
| 290 | |
| 291 | @Override |
| 292 | public int getProtocolId() { |
| 293 | return ProtocolId_; |
| 294 | } |
| 295 | |
| 296 | public BenchProtocol() { |
| 297 | Argument = new BValue(); |
| 298 | } |
| 299 | |
| 300 | public BenchProtocol(BValue argument) { |
| 301 | Argument = argument; |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | static class BenchEnd extends Rpc<EmptyBean, EmptyBean> { |
| 306 | public static final int ProtocolId_ = Bean.hash32(BenchEnd.class.getName()); |