Re: [osgi-dev] configurationPid vs factory identifier

2018-09-27 Thread Leschke, Scott via osgi-dev
Just to be clear, I thought this: @Component( configurationPid = "com.my.component") @Designate( factory = true, ocd = MyConfig.class) public class MyComponent implements MyComponentInterface {} Was equivalent to this: @Component( factory = "com.my.component")

[osgi-dev] JMH within OSGi

2018-09-27 Thread Thomas Driessen via osgi-dev
Hi, I want to benchmark a method within a running OSGi instance. There are three services A, B, C where A references B and B references C. Calling a method on A transitively calls a method on B which calls a method on C. A, B and C are configured at runtime through ConfigurationAdmin and I