All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.burgstaller.okhttp.CachingUtils.kt Maven / Gradle / Ivy

There is a newer version: 0.4.0
Show newest version
package com.burgstaller.okhttp

import okhttp3.HttpUrl

object CachingUtils {
  /**
   * Get key to be used for storing cached auth responses, e.g.
   * http:myhost.com:8080
   */
  fun defaultCacheKey(url: HttpUrl): String {
    return "${url.scheme()}:${url.host()}:${url.port()}"
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy