blob: b36c821f7ceda3124814e060aa1dbdc1deb4c01d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.felix.dm.test.bundle.annotation.felix4050;
import java.util.Hashtable;
import org.apache.felix.dm.annotation.api.Component;
import org.apache.felix.dm.annotation.api.Inject;
import org.apache.felix.dm.annotation.api.ServiceDependency;
import org.apache.felix.dm.annotation.api.Start;
import org.apache.felix.dm.test.bundle.annotation.sequencer.Sequencer;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceRegistration;
@Component(provides = {})
public class B2 implements B {
@Inject
BundleContext _ctx;
@ServiceDependency
Sequencer m_sequencer;
@Start
void start() {
Thread t = new Thread(new Runnable() {
public void run() {
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
}
System.out.println("Registering B2");
ServiceRegistration sr = _ctx.registerService(B.class.getName(), B2.this, new Hashtable() {
{
put("type", "b2");
}
});
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
}
});
t.start();
}
public void run() {
m_sequencer.step(3);
}
}