public BeanRuntime(ServiceContext serviceContext, V beanInstance, bool joinLifecycle) { this.serviceContext = serviceContext; this.beanInstance = beanInstance; this.joinLifecycle = joinLifecycle; beanConfiguration = CreateBeanConfiguration(beanInstance.GetType()); }
public BeanRuntime(ServiceContext serviceContext, Type beanType, bool joinLifecycle) { this.serviceContext = serviceContext; this.beanType = beanType; this.joinLifecycle = joinLifecycle; beanConfiguration = CreateBeanConfiguration(beanType); }