FastQuant.EventClient.Emit C# (CSharp) Method

Emit() public method

public Emit ( Event e ) : void
e Event
return void
        public void Emit(Event e)
        {
            if (e.TypeId == EventType.Command)
                ((Command)e).SenderId = Id;

            this.dispatcher.Emit(e);
        }