SSLSessionCache
  public
  
  final
  
  class
  SSLSessionCache
  
    extends Object
  
  
  
  
  
  
| java.lang.Object | |
| ↳ | android.net.SSLSessionCache | 
File-based cache of established SSL sessions. When re-establishing a connection to the same server, using an SSL session cache can save some time, power, and bandwidth by skipping directly to an encrypted stream. This is a persistent cache which can span executions of the application.
See also:
Summary
| Public constructors | |
|---|---|
| 
      SSLSessionCache(Context context)
      Create a session cache at the default location for this app. | |
| 
      SSLSessionCache(File dir)
      Create a session cache using the specified directory. | |
| Inherited methods | |
|---|---|
Public constructors
SSLSessionCache
public SSLSessionCache (Context context)
Create a session cache at the default location for this app. Multiple instances share data internally.
| Parameters | |
|---|---|
| context | Context: for the application | 
SSLSessionCache
public SSLSessionCache (File dir)
Create a session cache using the specified directory. Individual session entries will be files within the directory. Multiple instances for the same directory share data internally.
| Parameters | |
|---|---|
| dir | File: to store session files in (created if necessary) | 
| Throws | |
|---|---|
| IOException | if the cache can't be opened | 
