Close Greengrass IPC Pub/Sub Subscription with C++ SDK

0

Hello,

I am trying to implement a Request / Response communication pattern on top of Greengrass IPC's Pub/Sub API. The basic design is as follows:

  • The client process generates a unique ID for its request
  • The client process subscribes to a specific topic dedicated to responding to the request, such as ipc/upload/response/<request ID generated in step 1>
  • The client process makes a request to the server process at a specific topic, such as ipc/upload/request
  • The server process processes the request and publishes the response on the response topic
  • The client process reads the response on the response topic and unsubscribes / cleans up the response handler

I want to do the unsubscribe and clean up as there may be many requests and it does not seem to leave a number of handlers allocated after they have handled the single message they are intended to. However, I am not seeing anything in the GreengrassCoreIpcClient API docs about how to unsubscribe from a local pub/sub topic. How should I go about this?

已提問 1 年前檢視次數 287 次
1 個回答
2
已接受的答案

To unsubscribe, call close() on the subscription operation. For example: https://aws.github.io/aws-iot-device-sdk-cpp-v2/class_aws_1_1_greengrass_1_1_subscribe_to_configuration_update_operation.html. See "Public Member Functions inherited from ClientOperation"

Cheers,

Michael

AWS
專家
已回答 1 年前
profile pictureAWS
專家
已審閱 1 年前
  • Amazing, that answers my question. Thank you!!

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南