Examples of DisposableContainer


Examples of com.inspiresoftware.lib.dto.geda.assembler.extension.DisposableContainer

            public void serviceChanged(final ServiceEvent event) {
                if (event.getType() == ServiceEvent.UNREGISTERING) {
                    final ServiceReference ref = event.getServiceReference();
                    if (ref == serviceRegistration.getReference()) {
                        // Flush all resources that might have been missed
                        final DisposableContainer facade =
                                (DisposableContainer) bundleContext.getService(ref);
                        facade.releaseResources();
                    }
                }
            }
        });
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.