Package-level declarations

Types

Link copied to clipboard
class FetcherManager(val refreshRoutine: CoroutineScope)

The FetcherManager class is useful to manage the requests to the backend executing these requests with a CoroutineScope so to execute in background and not working in the main UI thread

Link copied to clipboard
abstract class Requester(var host: String, var userId: String? = null, var userToken: String? = null, var debugMode: Boolean = false, val connectionTimeout: Long = DEFAULT_REQUEST_TIMEOUT.toLong(), val connectionErrorMessage: String, val enableCertificatesValidation: Boolean = false)

The Requester class is useful to communicate with backend based on the SpringBoot framework