@@ -224,6 +224,24 @@ SpannerLogging::BatchWrite(
224224 std::move (context), options, request, __func__, tracing_options_);
225225}
226226
227+ future<StatusOr<google::spanner::v1::Session>>
228+ SpannerLogging::AsyncCreateSession (
229+ google::cloud::CompletionQueue& cq,
230+ std::shared_ptr<grpc::ClientContext> context,
231+ google::cloud::internal::ImmutableOptions options,
232+ google::spanner::v1::CreateSessionRequest const & request) {
233+ return google::cloud::internal::LogWrapper (
234+ [this ](google::cloud::CompletionQueue& cq,
235+ std::shared_ptr<grpc::ClientContext> context,
236+ google::cloud::internal::ImmutableOptions options,
237+ google::spanner::v1::CreateSessionRequest const & request) {
238+ return child_->AsyncCreateSession (cq, std::move (context),
239+ std::move (options), request);
240+ },
241+ cq, std::move (context), std::move (options), request, __func__,
242+ tracing_options_);
243+ }
244+
227245future<StatusOr<google::spanner::v1::BatchCreateSessionsResponse>>
228246SpannerLogging::AsyncBatchCreateSessions (
229247 google::cloud::CompletionQueue& cq,
0 commit comments