FastQuant.FileDataServer.FileDataServer C# (CSharp) Method

FileDataServer() public method

public FileDataServer ( Framework framework, string fileName, string host = null, int port = -1 ) : System.Collections.Generic
framework Framework
fileName string
host string
port int
return System.Collections.Generic
        public FileDataServer(Framework framework, string fileName, string host = null, int port = -1) : base(framework)
        {
            this.host = host;
            this.dataFile = new DataFile(fileName, framework.StreamerManager);
        }