Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 349078
Collapse All | Expand All

(-)a/compendium/bundles/org.eclipse.ecf.osgi.services.distribution/src/org/eclipse/ecf/internal/osgi/services/distribution/BasicTopologyManager.java (-5 / +5 lines)
Lines 107-117 public class BasicTopologyManager extends AbstractTopologyManager implements Link Here
107
107
108
	public void start() throws Exception {
108
	public void start() throws Exception {
109
109
110
		// First export any previously registered remote services
111
		if (exportRegisteredSvcs)
112
			exportRegisteredServices(exportRegisteredSvcsClassname,
113
					exportRegisteredSvcsFilter);
114
115
		// Register as EndpointListener, so that it gets notified when Endpoints
110
		// Register as EndpointListener, so that it gets notified when Endpoints
116
		// are discovered
111
		// are discovered
117
		Properties props = new Properties();
112
		Properties props = new Properties();
Lines 125-130 public class BasicTopologyManager extends AbstractTopologyManager implements Link Here
125
		// are registered
120
		// are registered
126
		eventHookRegistration = getContext().registerService(
121
		eventHookRegistration = getContext().registerService(
127
				EventHook.class.getName(), this, null);
122
				EventHook.class.getName(), this, null);
123
124
		// Lastly, export any previously registered remote services
125
		if (exportRegisteredSvcs)
126
			exportRegisteredServices(exportRegisteredSvcsClassname,
127
					exportRegisteredSvcsFilter);
128
	}
128
	}
129
129
130
	public void endpointAdded(
130
	public void endpointAdded(

Return to bug 349078