Skip to content

Commit 016c65a

Browse files
author
Colin Miller
committed
Updating JavaDoc
Just making it clear that SynchronousRetrieval shouldn't be called on the UI thread.
1 parent 598844c commit 016c65a

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ repositories {
102102
}
103103
104104
dependencies {
105-
compile 'com.colintmiller:simplenosql:0.5'
105+
compile 'com.colintmiller:simplenosql:0.5.1'
106106
}
107107
```
108108

SimpleNoSQL/src/main/java/com/colintmiller/simplenosql/toolbox/SynchronousRetrieval.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ public List<NoSQLEntity<T>> getSynchronousResults() {
3737
/**
3838
* Synchronous blocking call to get results with an additional timer option. You MUST have made a .retrieve() call
3939
* with this object before calling this method or it will timeout after the specified time and return a null result.
40+
* This call should never be made on the main thread.
41+
*
4042
* @param timeout the amount of time to wait for a timeout
4143
* @param unit the specified unit to apply to the timeout
4244
* @return the results of your query, waiting until the results arrive.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
mavenCentral()
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:1.0.0'
11+
classpath 'com.android.tools.build:gradle:1.1.1'
1212

1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1818
# org.gradle.parallel=true
1919

20-
VERSION_NAME=0.5
20+
VERSION_NAME=0.5.1
2121
VERSION_CODE=2
2222
GROUP=com.colintmiller
2323

0 commit comments

Comments
 (0)