/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//! A module for everything needed to be a "sync client" - ie, a device which //! can perform a full sync of any number of collections, including managing //! the server state. //! //! In general, the client is responsible for all communication with the sync server, //! including ensuring the state is correct, and encrypting/decrypting all records //! to and from the server. However, the actual syncing of the collections is //! delegated to an external [crate::engine](Sync Engine). //! //! One exception is that the "sync client" owns one sync engine - the //! [crate::clients_engine], which is managed internally. mod coll_state; mod coll_update; mod collection_keys; mod request; mod state; mod status; mod storage_client; mod sync; mod sync_multiple; mod token; mod util;
pub(crate) use coll_state::{CollState, LocalCollStateMachine}; pub(crate) use coll_update::{fetch_incoming, CollectionUpdate}; pub(crate) use collection_keys::CollectionKeys; pub(crate) use request::InfoConfiguration; pub(crate) use state::GlobalState; pubuse status::{ServiceStatus, SyncResult}; pubuse storage_client::{
SetupStorageClient, Sync15ClientResponse, Sync15StorageClient, Sync15StorageClientInit,
}; pubuse sync_multiple::{
sync_multiple, sync_multiple_with_command_processor, MemoryCachedState, SyncRequestInfo,
};
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.9 Sekunden
(vorverarbeitet am 2026-07-06)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.