Just a second...

Adding a ClientListener

You can add a ClientListener to listen for client notifications.

So a publisher can add itself as a listener for client notifications as follows:
public class MyPublisher extends Publisher implements ClientListener {
    
    protected void initialLoad() throws APIException {
        Publishers.addEventListener(this);
    }