org.jboss.errai.common.client.api.extension
Interface InitFailureListener
public interface InitFailureListener
An InitFailureListener is used to listen for components which do not initialize as part of the
framework bootstrap at runtime. Generally, framework components are bootstrapped based on class-based
topic ("org.jboss.errai.bus.client.framework.ClientMessageBus" for instance). The appearance of one of
these topics in the Set
passed to the onInitFailure(java.util.Set)
method indicates
this component timed out and did not initialize.
- Author:
- Mike Brock
onInitFailure
void onInitFailure(Set<String> failedTopics)
- Called when an initialization failure occurs.
- Parameters:
failedTopics
- Represents a set of initialization topics which did not initialize. These are typically
based on the fully-qualified class names of components.
(e.g. "org.jboss.errai.bus.client.framework.ClientMessageBus)
Copyright © 2013-2014 JBoss, a division of Red Hat. All Rights Reserved.