Events in an HttpAPI service

Does HttpAPI support server events? Apologies if that’s a silly question. If I added HttpAPI to an existing service that contains events as well as methods, am I right in thinking that only the methods would be accessible by HTTP clients?

HTTP API (aka swagger) supports only calling of methods that have special attributes.
Events aren’t supported via HTTP API

Hello

As Eugene said, events aren’t supported by HttpAPI and won’t be supported because of the very nature of HttpAPI.

Still events by itself are not magic. Essentially it is a queue of messages stored on the server side. Client queries server for these messages and then invokes some method(s) based on the information received. So it is quite possible to implement something similar using HttpAPI methods.

Regards