Remove Action Listner from a jline ConsoleReader

97 Views Asked by At

I am using the jline.ConsoleReader provided and adding an ActionListner for a key (say pressing 'q') using

q. addTriggerAction('q', new ActionListener(){ System.out.println("Triggered"); });

However after a certain time I need to stop triggering the action and remove the listener. How can I do that? I might need to add a new different ActionListener to the same action later

0

There are 0 best solutions below