Package akka.remote.testconductor
Interface TestConductorProtocol.WrapperOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
TestConductorProtocol.Wrapper
,TestConductorProtocol.Wrapper.Builder
- Enclosing class:
- TestConductorProtocol
public static interface TestConductorProtocol.WrapperOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestConductorProtocol.AddressRequest
getAddr()
optional .AddressRequest addr = 5;
TestConductorProtocol.AddressRequestOrBuilder
getAddrOrBuilder()
optional .AddressRequest addr = 5;
TestConductorProtocol.EnterBarrier
getBarrier()
optional .EnterBarrier barrier = 2;
TestConductorProtocol.EnterBarrierOrBuilder
getBarrierOrBuilder()
optional .EnterBarrier barrier = 2;
java.lang.String
getDone()
optional string done = 4;
akka.protobufv3.internal.ByteString
getDoneBytes()
optional string done = 4;
TestConductorProtocol.InjectFailure
getFailure()
optional .InjectFailure failure = 3;
TestConductorProtocol.InjectFailureOrBuilder
getFailureOrBuilder()
optional .InjectFailure failure = 3;
TestConductorProtocol.Hello
getHello()
optional .Hello hello = 1;
TestConductorProtocol.HelloOrBuilder
getHelloOrBuilder()
optional .Hello hello = 1;
boolean
hasAddr()
optional .AddressRequest addr = 5;
boolean
hasBarrier()
optional .EnterBarrier barrier = 2;
boolean
hasDone()
optional string done = 4;
boolean
hasFailure()
optional .InjectFailure failure = 3;
boolean
hasHello()
optional .Hello hello = 1;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasHello
boolean hasHello()
optional .Hello hello = 1;
- Returns:
- Whether the hello field is set.
-
getHello
TestConductorProtocol.Hello getHello()
optional .Hello hello = 1;
- Returns:
- The hello.
-
getHelloOrBuilder
TestConductorProtocol.HelloOrBuilder getHelloOrBuilder()
optional .Hello hello = 1;
-
hasBarrier
boolean hasBarrier()
optional .EnterBarrier barrier = 2;
- Returns:
- Whether the barrier field is set.
-
getBarrier
TestConductorProtocol.EnterBarrier getBarrier()
optional .EnterBarrier barrier = 2;
- Returns:
- The barrier.
-
getBarrierOrBuilder
TestConductorProtocol.EnterBarrierOrBuilder getBarrierOrBuilder()
optional .EnterBarrier barrier = 2;
-
hasFailure
boolean hasFailure()
optional .InjectFailure failure = 3;
- Returns:
- Whether the failure field is set.
-
getFailure
TestConductorProtocol.InjectFailure getFailure()
optional .InjectFailure failure = 3;
- Returns:
- The failure.
-
getFailureOrBuilder
TestConductorProtocol.InjectFailureOrBuilder getFailureOrBuilder()
optional .InjectFailure failure = 3;
-
hasDone
boolean hasDone()
optional string done = 4;
- Returns:
- Whether the done field is set.
-
getDone
java.lang.String getDone()
optional string done = 4;
- Returns:
- The done.
-
getDoneBytes
akka.protobufv3.internal.ByteString getDoneBytes()
optional string done = 4;
- Returns:
- The bytes for done.
-
hasAddr
boolean hasAddr()
optional .AddressRequest addr = 5;
- Returns:
- Whether the addr field is set.
-
getAddr
TestConductorProtocol.AddressRequest getAddr()
optional .AddressRequest addr = 5;
- Returns:
- The addr.
-
getAddrOrBuilder
TestConductorProtocol.AddressRequestOrBuilder getAddrOrBuilder()
optional .AddressRequest addr = 5;
-
-