Azure / azure-cosmosdb-java

Java Async SDK for SQL API of Azure Cosmos DB
MIT License
54 stars 61 forks source link

[V3] Instantiation style #151

Closed christopheranderson closed 5 years ago

christopheranderson commented 5 years ago

Rather than use a fluent builder pattern as specified in track two, the current API provides two static factory methods on CosmosClient. To resolve this, a fluent builder should be used in place of these two static factory methods, and CosmosConfiguration should be removed, in favour of additional builder arguments. Fluent builder methods should not be prefixed with the with naming pattern.

christopheranderson commented 5 years ago

done