AsynchronousCounter is a module interface that returns the number of active asynchronous requests. See https://github.com/gotenberg/gotenberg/issues/1022.
| 177 | // |
| 178 | // See https://github.com/gotenberg/gotenberg/issues/1022. |
| 179 | type AsynchronousCounter interface { |
| 180 | AsyncCount() int64 |
| 181 | } |
| 182 | |
| 183 | // Descriptor returns an [Api]'s module descriptor. |
| 184 | func (a *Api) Descriptor() gotenberg.ModuleDescriptor { |