-
Notifications
You must be signed in to change notification settings - Fork 433
Closed
Labels
type: cleanupAn internal cleanup or hygiene concern.An internal cleanup or hygiene concern.
Description
class DefaultDataMigrationServiceStub : public DataMigrationServiceStub {
public:
DefaultDataMigrationServiceStub(
std::unique_ptr<
google::cloud::clouddms::v1::DataMigrationService::StubInterface>
grpc_stub,
std::unique_ptr<google::longrunning::Operations::StubInterface>
operations_stub,
std::unique_ptr<google::iam::v1::IAMPolicy::StubInterface> iampolicy_stub,
std::unique_ptr<google::cloud::location::Locations::StubInterface>
locations_stub,
std::unique_ptr<google::longrunning::Operations::StubInterface>
operations)
: grpc_stub_(std::move(grpc_stub)),
operations_stub_(std::move(operations_stub)),
iampolicy_stub_(std::move(iampolicy_stub)),
locations_stub_(std::move(locations_stub)),
operations_(std::move(operations)) {}
After adding mixin, there could be multiple operation stubs like operations_stub_ and operations_, we can change stub_generator.cc to keep one of them.
Metadata
Metadata
Assignees
Labels
type: cleanupAn internal cleanup or hygiene concern.An internal cleanup or hygiene concern.