Exemplo n.º 1
0
 internal SbWatchpointImpl(
     GrpcConnection connection, GrpcSbWatchpoint grpcSbWatchpoint) :
     this(connection,
          new SbWatchpointRpcService.SbWatchpointRpcServiceClient(connection.CallInvoker),
          grpcSbWatchpoint)
 {
 }
Exemplo n.º 2
0
 internal SbWatchpointImpl(
     GrpcConnection connection, SbWatchpointRpcService.SbWatchpointRpcServiceClient client,
     GrpcSbWatchpoint grpcSbWatchpoint)
 {
     this.connection       = connection;
     this.client           = client;
     this.grpcSbWatchpoint = grpcSbWatchpoint;
 }
Exemplo n.º 3
0
 public virtual SbWatchpoint Create(GrpcConnection connection,
                                    GrpcSbWatchpoint grpcSbWatchpoint)
 {
     return(new SbWatchpointImpl(connection, grpcSbWatchpoint));
 }