Skip to content

Commit

Permalink
make DatastoreBatchWriter public (googleapis#3387)
Browse files Browse the repository at this point in the history
It would be useful for `DatastoreBatchWriter` to be public for instrumentation purposes. Its sibling interfaces `DatastoreWriter`, `DatastoreReaderWriter`, `DatastoreReader` etc are all public so I assume that it not being public is not intentional.
  • Loading branch information
danielnorberg authored and pongad committed Sep 5, 2018
1 parent c81ff3e commit f4bc56d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* An interface to represent a batch of write operations. All write operation for a batch writer
* will be applied to the Datastore in one RPC call.
*/
interface DatastoreBatchWriter extends DatastoreWriter {
public interface DatastoreBatchWriter extends DatastoreWriter {

/**
* Datastore add operation. This method will also allocate id for any entity with an incomplete
Expand Down

0 comments on commit f4bc56d

Please sign in to comment.