com.google.cloud.storage.ResumableSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-cloud-storage Show documentation
Show all versions of google-cloud-storage Show documentation
Java idiomatic client for Google Cloud Storage.
/*
* Copyright 2023 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.cloud.storage;
import com.google.api.gax.retrying.ResultRetryAlgorithm;
import com.google.api.gax.rpc.ClientStreamingCallable;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.storage.Retrying.RetryingDependencies;
import com.google.storage.v2.QueryWriteStatusRequest;
import com.google.storage.v2.QueryWriteStatusResponse;
import com.google.storage.v2.WriteObjectRequest;
import com.google.storage.v2.WriteObjectResponse;
final class ResumableSession {
private ResumableSession() {}
static JsonResumableSession json(
HttpClientContext context,
RetryingDependencies deps,
ResultRetryAlgorithm> alg,
JsonResumableWrite resumableWrite) {
return new JsonResumableSession(context, deps, alg, resumableWrite);
}
static GrpcResumableSession grpc(
RetryingDependencies deps,
ResultRetryAlgorithm> alg,
ClientStreamingCallable writeCallable,
UnaryCallable queryWriteStatusCallable,
ResumableWrite resumableWrite,
Hasher hasher) {
return new GrpcResumableSession(
deps, alg, writeCallable, queryWriteStatusCallable, resumableWrite, hasher);
}
}