On Wed, Jun 11, 2025 at 10:18 AM viktor_krumm <viktor_kr...@proton.me.invalid> wrote:
> org.apache.guacamole.net.event.listener lists just a few classes. > AuthenticationSuccessEvent fires every time a event occurs. I do not see a > way to determine *what* event caused it to fire. Is there a way to > detect logout events? > > Version 1.5.5 and earlier only have four events implemented - they are: AuthenticationFailureEvent AuthenticationSuccessEvent TunnelOpenEvent TunnelCloseEvent ( https://github.com/apache/guacamole-client/tree/1.5.5/guacamole-ext/src/main/java/org/apache/guacamole/net/event ) Version 1.6.0 will add several new event types, including the UserSessionInvalidatedEvent class, which is probably what you're looking for. ( https://github.com/apache/guacamole-client/tree/staging/1.6.0/guacamole-ext/src/main/java/org/apache/guacamole/net/event ) -Nick