Help Center/
Media Processing Center/
SDK Reference/
Java SDK/
Packaging/
Canceling a Packaging Task
Updated on 2024-05-09 GMT+08:00
Canceling a Packaging Task
Notes
- To cancel a task, you need to provide the task ID.
- The task to be canceled must be in the task queue. Ongoing or completed packaging tasks cannot be canceled.
Core Code
1 2 3 4 5 |
// Set the ID of the task to be canceled. CancelRemuxTaskRequest req = new CancelRemuxTaskRequest().withTaskId("8191203"); // Send a message to MPC. CancelRemuxTaskResponse rsp = initMpcClient().cancelRemuxTask(req); System.out.println("rsp=" + rsp.toString()); |
Full Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
import com.huaweicloud.sdk.core.auth.BasicCredentials; import com.huaweicloud.sdk.core.exception.ClientRequestException; import com.huaweicloud.sdk.core.exception.ConnectionException; import com.huaweicloud.sdk.core.exception.RequestTimeoutException; import com.huaweicloud.sdk.core.http.HttpConfig; import com.huaweicloud.sdk.mpc.v1.MpcClient; import com.huaweicloud.sdk.mpc.v1.model.CancelRemuxTaskRequest; import com.huaweicloud.sdk.mpc.v1.model.CancelRemuxTaskResponse; import com.obs.services.internal.ServiceException; public class TestDeleteRemux { /** * Initialize the MPC client. * @return */ public static MpcClient initMpcClient() { HttpConfig httpConfig = HttpConfig.getDefaultHttpConfig().withIgnoreSSLVerification(true).withTimeout(3); // Configure the HTTP proxy. //httpConfig.withProxyHost("xxxxxx").withProxyPort(xxxxxx).withProxyUsername("xxxxxx"). // withProxyPassword("xxxxxx"); // Enter the AK and SK. To view your AK and SK, choose My CredentialsAccess Keys under your account on the console. String ak = "xxxxxx"; String sk = "xxxxxx"; // Enter the project ID. To view your project ID, choose My CredentialsAPI Credentials under your account on the console. String projectId = "xxxxxx"; // Enter the endpoint. The following uses region01 as an example. String endpoint = "https://mpc.region01.myhuaweicloud.com"; BasicCredentials auth = new BasicCredentials().withAk(ak).withSk(sk).withProjectId(projectId); return MpcClient.newBuilder() .withHttpConfig(httpConfig) .withCredential(auth) .withEndpoint(endpoint) .build(); } /** * Cancel a task in the queue. * @param args */ public static void main(String[] args) { CancelRemuxTaskRequest req = new CancelRemuxTaskRequest().withTaskId("8191203"); try { CancelRemuxTaskResponse rsp = initMpcClient().cancelRemuxTask(req); System.out.println("rsp=" + rsp.toString()); } catch (ClientRequestException | ConnectionException | RequestTimeoutException | ServiceException e) { System.out.println(e); } } } |
Parent topic: Packaging
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
The system is busy. Please try again later.
For any further questions, feel free to contact us through the chatbot.
Chatbot