Package net.xeoh.plugins.informationbroker

Examples of net.xeoh.plugins.informationbroker.InformationListener


     * @param valueListener
     */
    public <Type, I extends InformationItem<Type>> void onValue(
                                                                final InformationItemIdentifier<Type, I> item,
                                                                final ValueListener<Type> valueListener) {
        this.broker.subscribe(new InformationListener() {

            public void informationUpdate(
                                          InformationBroker brker,
                                          Collection<InformationItemIdentifier<?, InformationItem<?>>> ids) {
                valueListener.newValue(brker.getInformationItem(item).getContent());
View Full Code Here

TOP

Related Classes of net.xeoh.plugins.informationbroker.InformationListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.