mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-06 04:20:46 +00:00
13 lines
477 B
Java
13 lines
477 B
Java
package com.plexsdk.http;
|
|
|
|
import com.plexsdk.exceptions.ApiException;
|
|
import java.util.List;
|
|
|
|
public interface SessionsClient {
|
|
ResponseWithHeaders<String> getSessions() throws ApiException;
|
|
ResponseWithHeaders<String> getSessionHistory() throws ApiException;
|
|
ResponseWithHeaders<com.plexsdk.models.GetTranscodeSessionsResponse> getTranscodeSessions()
|
|
throws ApiException;
|
|
ResponseWithHeaders<String> stopTranscodeSession(String sessionKey) throws ApiException;
|
|
}
|