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