FastQuant.Provider.OpenInstrumentQueue C# (CSharp) 메소드

OpenInstrumentQueue() 개인적인 메소드

private OpenInstrumentQueue ( ) : void
리턴 void
        private void OpenInstrumentQueue()
        {
            if (this.instrumentQueue == null)
            {
                this.instrumentQueue = new EventQueue(EventQueueId.All, EventQueueType.Master, EventQueuePriority.Normal, 1024, this.framework.EventBus);
                this.instrumentQueue.Name = $"{this.name} instrument queue";
                this.instrumentQueue.Enqueue(new OnQueueOpened(this.instrumentQueue));
                this.framework.EventBus.ServicePipe.Add(this.instrumentQueue);
            }
        }