-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replace hooks sync with ReentrantReadWriteLock. * Rework clientReady hook. Added waitForReady method. * Deprecated original addOnClientReady hook. Prepare to release 10.2.0
- Loading branch information
1 parent
eb7326a
commit d2e5904
Showing
11 changed files
with
232 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
version=10.1.2 | ||
version=10.2.0 | ||
|
||
org.gradle.jvmargs=-Xmx2g |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.configcat; | ||
|
||
/** | ||
* Describes the Client state. | ||
*/ | ||
public enum ClientCacheState { | ||
/** | ||
* The SDK has no feature flag data neither from the cache nor from the ConfigCat CDN. | ||
*/ | ||
NO_FLAG_DATA, | ||
/** | ||
* The SDK runs with local only feature flag data. | ||
*/ | ||
HAS_LOCAL_OVERRIDE_FLAG_DATA_ONLY, | ||
/** | ||
* The SDK has feature flag data to work with only from the cache. | ||
*/ | ||
HAS_CACHED_FLAG_DATA_ONLY, | ||
/** | ||
* The SDK works with the latest feature flag data received from the ConfigCat CDN. | ||
*/ | ||
HAS_UP_TO_DATE_FLAG_DATA, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.