How can I listen to the client events like "ready" or "end"?
fractalawareness opened this issue · 3 comments
fractalawareness commented
I want to handle the "ready" and "end" events so I need to add some listeners. But obviously I can not make just client.on because of "client.on is not a function".
I think this could be related with the #8 - just make the RAW client accessible.
zacronos commented
The promise logic should wait for those sort of events before resolving. If you want to handle things using event listeners, perhaps you should consider using ftp
instead of promise-ftp
.
Can you explain the use case to me for why you need to handle things on the event handler level?
fractalawareness commented
I want to add logging for every time the connection is lost and every time it reconnects again.