이 콘텐츠는 선택한 언어로 제공되지 않습니다.
Chapter 5. Using the API
For more information, see the AMQ Python API reference and AMQ Python example suite.
5.1. Handling messaging events 링크 복사링크가 클립보드에 복사되었습니다!
AMQ Python is an asynchronous event-driven API. To define how an application handles events, the user implements callback methods on the MessagingHandler
class. These methods are then called as network activity or timers trigger new events.
Example: Handling messaging events
These are only a few common-case events. The full set is documented in the API reference.
5.3. Creating a container 링크 복사링크가 클립보드에 복사되었습니다!
The container is the top-level API object. It is the entry point for creating connections, and it is responsible for running the main event loop. It is often constructed with a global event handler.
Example: Creating a container
handler = ExampleHandler() container = Container(handler) container.run()
handler = ExampleHandler()
container = Container(handler)
container.run()
5.4. Setting the container identity 링크 복사링크가 클립보드에 복사되었습니다!
Each container instance has a unique identity called the container ID. When AMQ Python makes a connection, it sends the container ID to the remote peer. To set the container ID, pass it to the Container
constructor.
Example: Setting the container identity
container = Container(handler) container.container_id = "job-processor-3"
container = Container(handler)
container.container_id = "job-processor-3"
If the user does not set the ID, the library will generate a UUID when the container is constucted.