| Package | Description |
|---|---|
| com.codename1.cloud |
Provides cloud related services such as storage, binding widgets to the cloud seamlessly so they can be persisted
easily.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CloudStorage.commit(CloudResponse<Integer> response)
Deprecated.
A commit version that works asynchronously and returns one of the return codes above to indicate
the status.
|
void |
CloudStorage.fetch(String[] cloudIds,
CloudResponse<CloudObject[]> response)
Deprecated.
Fetches the objects from the server asynchronously.
|
void |
CloudStorage.queryEquals(String type,
int index,
String value,
int page,
int limit,
int visibilityScope,
CloudResponse<CloudObject[]> response)
Deprecated.
Performs a query to the server finding the objects where the key
value is equal to the given value.
|
void |
CloudStorage.queryEqualsCount(String type,
int index,
String value,
int visibilityScope,
CloudResponse<Integer> response)
Deprecated.
Equivalent to the standard query but just returns the total count of entries that will be returned
|
void |
CloudStorage.queryEqualsKeys(String type,
int index,
String value,
int page,
int limit,
int visibilityScope,
CloudResponse<String[]> response)
Deprecated.
Equivalent to the standard query but just returns the keys matching the given query
|
void |
CloudStorage.queryGreaterThan(String type,
int index,
String value,
int page,
int limit,
int visibilityScope,
CloudResponse<CloudObject[]> response)
Deprecated.
Performs a query to the server finding the objects where the key
value is greater than the given value.
|
void |
CloudStorage.queryGreaterThanCount(String type,
int index,
String value,
int visibilityScope,
CloudResponse<Integer> response)
Deprecated.
Equivalent to the standard query but just returns the total count of entries that will be returned
|
void |
CloudStorage.queryLessThan(String type,
int index,
String value,
int page,
int limit,
int visibilityScope,
CloudResponse<CloudObject[]> response)
Deprecated.
Performs a query to the server finding the objects where the key
value is smaller than the given value.
|
void |
CloudStorage.queryLessThanCount(String type,
int index,
String value,
int visibilityScope,
CloudResponse<Integer> response)
Deprecated.
Equivalent to the standard query but just returns the total count of entries that will be returned
|
void |
CloudStorage.querySorted(String type,
int index,
boolean ascending,
int page,
int limit,
int visibilityScope,
CloudResponse<CloudObject[]> response)
Deprecated.
Performs a query to the server finding the objects where the sort is equal to the given value.
|
void |
CloudStorage.querySortedKeys(String type,
int index,
boolean ascending,
int page,
int limit,
int visibilityScope,
CloudResponse<String[]> response)
Deprecated.
Performs a query to the server finding the objects where the sort is equal to the given value and returning
the cloud key of these objects.
|
void |
CloudStorage.refresh(CloudObject[] objects,
CloudResponse<Integer> response)
Deprecated.
Refresh the given objects with data from the server if they were modified on the server (this is the asynchronous
version of the method).
|
Copyright © 2023. All rights reserved.