NServiceBus.InstanceMappingFileMonitor.InstanceMappingFileMonitor C# (CSharp) Method

InstanceMappingFileMonitor() public method

public InstanceMappingFileMonitor ( string filePath, System.TimeSpan checkInterval, IAsyncTimer timer, IInstanceMappingFileAccess fileAccess, EndpointInstances endpointInstances ) : System
filePath string
checkInterval System.TimeSpan
timer IAsyncTimer
fileAccess IInstanceMappingFileAccess
endpointInstances EndpointInstances
return System
        public InstanceMappingFileMonitor(string filePath, TimeSpan checkInterval, IAsyncTimer timer, IInstanceMappingFileAccess fileAccess, EndpointInstances endpointInstances)
        {
            this.filePath = filePath;
            this.checkInterval = checkInterval;
            this.timer = timer;
            this.fileAccess = fileAccess;
            this.endpointInstances = endpointInstances;
        }