The async client class.
class AsyncClientClass
Default constructor.
AsyncClientClass()
AsyncClientClass(Client &client, network_config_data &net)
Params:
-
client
- The SSL client that working with the network interface. -
net
- The network config data can be obtained from the networking classes via the static function calledgetNetwork
.
AsyncClientClass(AsyncTCPConfig &tcpClientConfig, network_config_data &net)
Params:
-
tcpClientConfig
- TheAsyncTCPConfig
object. Seesrc/core/AsyncTCPConfig.h
-
net
- The network config data can be obtained from the networking classes via the static function calledgetNetwork
.
Set the external async result to use with the sync task.
If no async result was set (unset) for sync task, the internal async result will be used and shared usage for all sync tasks.
void setAsyncResult(AsyncResult &result)
Params:
result
- The AsyncResult to set.
Unset the external async result use with the sync task.
The internal async result will be used for sync task.
void unsetAsyncResult()
Get the network connection status.
bool networkStatus()
Returns:
bool
- Returns true if network is connected.
Get the network disconnection time.
unsigned long networkLastSeen()
Returns:
unsigned long
- The millisec of network successfully connection since device boot.
Return the current network type.
firebase_network_data_type getNetworkType()
Returns:
firebase_network_data_type
- Thefirebase_network_data_type
enums arefirebase_network_data_default_network
,firebase_network_data_generic_network
,firebase_network_data_ethernet_network
andfirebase_network_data_gsm_network
.
Stop and remove the async/sync task from the queue.
void stopAsync(bool all = false)
Params:
all
- The option to stop and remove all tasks. If false, only running task will be stop and removed from queue.
Stop and remove the specific async/sync task from the queue.
void stopAsync(const String &uid)
Params:
uid
- The task identifier of the task to stop and remove from the queue.
Get the number of async/sync tasks that stored in the queue.
size_t taskCount() const
Returns:
size_t
- The total tasks in the queue.
Get the last error information from async client.
FirebaseError lastError() const
Returns:
FirebaseError
- TheFirebaseError
object that contains the last error information.
Get the response ETag.
String etag() const
Returns:
String
- The response ETag header.
Set the ETag header to the task.
ETag of async client which obtained from etag() function will be empty after it assign to the task.
void setETag(const String &etag)
Params:
etag
- The ETag to set to the task.
Set the sync task's send timeout in seconds.
void setSyncSendTimeout(uint32_t timeoutSec)
Params:
timeoutSec
- The TCP write timeout in seconds.
Set the sync task's read timeout in seconds.
void setSyncReadTimeout(uint32_t timeoutSec)
Params:
timeoutSec
- The TCP read timeout in seconds.
Set the network interface.
The SSL client set here should work for the type of network set.
void setNetwork(Client &client, network_config_data &net)
Params:
-
client
- The SSL client that working with this type of network interface. -
net
- The network config data can be obtained from the networking classes via the static function calledgetNetwork
.