Skip to content

Commit 60347b8

Browse files
danielnorbergpongad
authored andcommitted
make DatastoreBatchWriter public (#3387)
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.
1 parent 9033607 commit 60347b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google-cloud-datastore/src/main/java/com/google/cloud/datastore/DatastoreBatchWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* An interface to represent a batch of write operations. All write operation for a batch writer
2323
* will be applied to the Datastore in one RPC call.
2424
*/
25-
interface DatastoreBatchWriter extends DatastoreWriter {
25+
public interface DatastoreBatchWriter extends DatastoreWriter {
2626

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

0 commit comments

Comments
 (0)