You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Datastore API 0.5.0, in Transaction.Response interface - Both generatedKeys() and getGeneratedKeys() are marked as deprecated. What is the alternative? I wonder if the new method getGeneratedKeys was unintentionally marked as deprecated?
public interface Transaction extends DatastoreBatchWriter, DatastoreReaderWriter {
interface Response {
/**
* Returns a list of keys generated by a transaction.
*/
@Deprecated
List<Key> generatedKeys();
/**
* Returns a list of keys generated by a transaction.
*/
@Deprecated
List<Key> getGeneratedKeys();
}
//...
}
The text was updated successfully, but these errors were encountered:
In the Datastore API 0.5.0, in Transaction.Response interface - Both generatedKeys() and getGeneratedKeys() are marked as deprecated. What is the alternative? I wonder if the new method getGeneratedKeys was unintentionally marked as deprecated?
The text was updated successfully, but these errors were encountered: