/// <summary>
 ///     Ctor.
 /// </summary>
 public ConfigurationCommonEventTypeMeta()
 {
     _classPropertyResolutionStyle = PropertyResolutionStyle.DEFAULT;
     _defaultAccessorStyle = AccessorStyle.NATIVE;
     _defaultEventRepresentation = EventUnderlyingTypeExtensions.GetDefault();
     _avroSettings = new AvroSettingsConfig();
 }
示例#2
0
 public BeanEventTypeStemService(
     IDictionary<Type, IList<string>> publicClassToTypeNames,
     EventBeanTypedEventFactory eventBeanTypedEventFactory,
     PropertyResolutionStyle defaultPropertyResolutionStyle,
     AccessorStyle defaultAccessorStyle)
 {
     PublicClassToTypeNames = publicClassToTypeNames;
     EventBeanTypedEventFactory = eventBeanTypedEventFactory;
     this._defaultPropertyResolutionStyle = defaultPropertyResolutionStyle;
     this._defaultAccessorStyle = defaultAccessorStyle;
 }