コード例 #1
0
ファイル: BeanRuntime.cs プロジェクト: vogelb/ambeth
 public BeanRuntime(ServiceContext serviceContext, V beanInstance, bool joinLifecycle)
 {
     this.serviceContext = serviceContext;
     this.beanInstance   = beanInstance;
     this.joinLifecycle  = joinLifecycle;
     beanConfiguration   = CreateBeanConfiguration(beanInstance.GetType());
 }
コード例 #2
0
ファイル: BeanRuntime.cs プロジェクト: vogelb/ambeth
 public BeanRuntime(ServiceContext serviceContext, Type beanType, bool joinLifecycle)
 {
     this.serviceContext = serviceContext;
     this.beanType       = beanType;
     this.joinLifecycle  = joinLifecycle;
     beanConfiguration   = CreateBeanConfiguration(beanType);
 }