Skip to content

Commit

Permalink
Bigtable: make request context serializable (#4459)
Browse files Browse the repository at this point in the history
  • Loading branch information
igorbernstein2 authored Feb 6, 2019
1 parent f5f29bb commit f50968d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

import com.google.api.core.InternalApi;
import com.google.auto.value.AutoValue;
import java.io.Serializable;

/**
* Contains information necessary to construct Bigtable protobuf requests from user facing models.
Expand All @@ -30,7 +31,7 @@
*/
@InternalApi
@AutoValue
public abstract class RequestContext {
public abstract class RequestContext implements Serializable {

/** Creates a new instance of the {@link RequestContext}. */
public static RequestContext create(String projectId, String instanceId, String appProfileId) {
Expand Down

0 comments on commit f50968d

Please sign in to comment.