public BrokeredMessageFactory(MaxLargeMessageSizeSetting maxLargeMessageSize, MaxSmallMessageSizeSetting maxSmallMessageSize, IClock clock, ICompressor compressor, IDispatchContextManager dispatchContextManager, ILargeMessageBodyStore largeMessageBodyStore, ISerializer serializer, ITypeProvider typeProvider) { _serializer = serializer; _maxLargeMessageSize = maxLargeMessageSize; _maxSmallMessageSize = maxSmallMessageSize; _compressor = compressor; _dispatchContextManager = dispatchContextManager; _largeMessageBodyStore = largeMessageBodyStore; _typeProvider = typeProvider; _clock = clock; }
public BrokeredMessageFactory(DefaultMessageTimeToLiveSetting timeToLive, MaxLargeMessageSizeSetting maxLargeMessageSize, MaxSmallMessageSizeSetting maxSmallMessageSize, ReplyQueueNameSetting replyQueueName, IClock clock, ICompressor compressor, IDispatchContextManager dispatchContextManager, ILargeMessageBodyStore largeMessageBodyStore, ISerializer serializer, ITypeProvider typeProvider) { _timeToLive = timeToLive; _maxLargeMessageSize = maxLargeMessageSize; _maxSmallMessageSize = maxSmallMessageSize; _replyQueueName = replyQueueName; _clock = clock; _compressor = compressor; _dispatchContextManager = dispatchContextManager; _largeMessageBodyStore = largeMessageBodyStore; _serializer = serializer; _typeProvider = typeProvider; }
public PropertyInjector(IClock clock, IDispatchContextManager dispatchContextManager, ILargeMessageBodyStore largeMessageBodyStore) { _clock = clock; _dispatchContextManager = dispatchContextManager; _largeMessageBodyStore = largeMessageBodyStore; }
public static LargeMessageStorageConfiguration WithLargeMessageBodyStore(this LargeMessageStorageConfiguration configuration, ILargeMessageBodyStore largeMessageBodyStore) { configuration.LargeMessageBodyStore = largeMessageBodyStore; return configuration; }
public static LargeMessageStorageConfiguration WithLargeMessageBodyStore(this LargeMessageStorageConfiguration configuration, ILargeMessageBodyStore largeMessageBodyStore) { configuration.LargeMessageBodyStore = largeMessageBodyStore; return(configuration); }