mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 11:05:25 +00:00
11 lines
238 B
Java
11 lines
238 B
Java
package org.thoughtcrime.securesms.net;
|
|
|
|
public interface RequestController {
|
|
|
|
/**
|
|
* Best-effort cancellation of any outstanding requests. Will also release any resources held by
|
|
* the underlying request.
|
|
*/
|
|
void cancel();
|
|
}
|