Skip to content

Commit 3db766f

Browse files
author
Alex Welk
committed
Updated README
1 parent b4d650a commit 3db766f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,17 @@ final String gcpProjectId = ...
7272
final String bigTableInstanceId = ...
7373

7474
final DaoFactory daoFactory = new DaoFactory(gcpProjectId, bigTableInstanceId);
75+
final AsyncDaoFactory asyncDaoFactory = new AsyncDaoFactory(gcpProjectId, bigTableInstanceId);
7576
```
7677

7778
or
7879

7980
```java
8081
final Connection connection = ... // Customized BigTable or HBase connection
82+
final AsyncConnection asyncConnection = ... // Customized Async BigTable or HBase connection
8183

8284
final DaoFactory daoFactory = new DaoFactory(connection);
85+
final AsyncDaoFactory asyncDaoFactory = new AsyncDaoFactory(asyncConnection);
8386
```
8487

8588
### Retrieving an Entity DAO
@@ -389,6 +392,8 @@ All changes are expected to be tested thoroughly prior to submission. Any untest
389392
History
390393
-------
391394

395+
* **1.5.0**: Add asynchronous read/write/scan/delete operations via AsyncDao and AsyncDaoFactory.
396+
392397
* **1.4.0**: Add table scan capability, with starting key to start scan from and ending/last key to be scanned. Requires full key.
393398

394399
* **1.3.0**: Improve the extensibility of the library by allowing DAO creation from an `EntityConfiguration` to support dynamically generated entities.

0 commit comments

Comments
 (0)