Пример #1
0
 protected override void AttachToViewProcess(RemoteViewClient remoteViewClient)
 {
     //Still want to tick on time changed because it may need a recompile
     //Should probably deal with this ourselves
     var options = new ExecutionOptions(new InfiniteViewCycleExecutionSequence(), ViewExecutionFlags.TriggersEnabled | ViewExecutionFlags.AwaitMarketData, null, new ViewCycleExecutionOptions(default(DateTimeOffset), new LiveMarketDataSpecification()));
     remoteViewClient.AttachToViewProcess(_basisViewName, options);
 }
Пример #2
0
        protected override void AttachToViewProcess(RemoteViewClient remoteViewClient)
        {
            //Still want to tick on time changed because it may need a recompile
            //Should probably deal with this ourselves
            var options = new ExecutionOptions(new InfiniteViewCycleExecutionSequence(), ViewExecutionFlags.TriggersEnabled | ViewExecutionFlags.AwaitMarketData, null, new ViewCycleExecutionOptions(default(DateTimeOffset), new LiveMarketDataSpecification()));

            remoteViewClient.AttachToViewProcess(_basisViewName, options);
        }
Пример #3
0
 protected override void AttachToViewProcess(RemoteViewClient remoteViewClient)
 {
     remoteViewClient.AttachToViewProcess(_viewDefinition.UniqueID, ExecutionOptions.Snapshot(_snapshotId));
 }