Interface ISoundMixerServiceFactory
Factory interface for creating instances of ISoundMixerService.
Namespace: Serenity.SoundMixer.Application.Interfaces
Assembly: Serenity.SoundMixer.Application.dll
Syntax
public interface ISoundMixerServiceFactory
Methods
CreateService(string, ISoundMixerSettings, IEventDispatcherService)
Creates an instance of ISoundMixerService with the specified parameters.
Declaration
ISoundMixerService CreateService(string serviceName, ISoundMixerSettings soundMixerSettings, IEventDispatcherService eventDispatcherService)
Parameters
| Type | Name | Description |
|---|---|---|
| string | serviceName | The name of the sound mixer service. |
| ISoundMixerSettings | soundMixerSettings | The settings for the sound mixer. |
| IEventDispatcherService | eventDispatcherService | The event dispatcher service to be used by the sound mixer service. |
Returns
| Type | Description |
|---|---|
| ISoundMixerService | An instance of ISoundMixerService. |