File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -72,14 +72,17 @@ final String gcpProjectId = ...
72
72
final String bigTableInstanceId = ...
73
73
74
74
final DaoFactory daoFactory = new DaoFactory (gcpProjectId, bigTableInstanceId);
75
+ final AsyncDaoFactory asyncDaoFactory = new AsyncDaoFactory (gcpProjectId, bigTableInstanceId);
75
76
```
76
77
77
78
or
78
79
79
80
``` java
80
81
final Connection connection = ... // Customized BigTable or HBase connection
82
+ final AsyncConnection asyncConnection = ... // Customized Async BigTable or HBase connection
81
83
82
84
final DaoFactory daoFactory = new DaoFactory (connection);
85
+ final AsyncDaoFactory asyncDaoFactory = new AsyncDaoFactory (asyncConnection);
83
86
```
84
87
85
88
### Retrieving an Entity DAO
@@ -389,6 +392,8 @@ All changes are expected to be tested thoroughly prior to submission. Any untest
389
392
History
390
393
-------
391
394
395
+ * ** 1.5.0** : Add asynchronous read/write/scan/delete operations via AsyncDao and AsyncDaoFactory.
396
+
392
397
* ** 1.4.0** : Add table scan capability, with starting key to start scan from and ending/last key to be scanned. Requires full key.
393
398
394
399
* ** 1.3.0** : Improve the extensibility of the library by allowing DAO creation from an ` EntityConfiguration ` to support dynamically generated entities.
You can’t perform that action at this time.
0 commit comments