/// <summary> /// Called when Spotfire has started /// </summary> /// <param name="context"></param> public override void Started(StartContextWrapper context) { base.Started(context); //UpdateStatusMessage("Spotfire has started"); WaitingForStartupCompletedEvent.Set(); // indicate Spotfire has started return; }
public override void Started(StartContextWrapper context) { base.Started(context); // The call to this method is made on a thread that is allocated by the COM // interop framework. To set a text in the Form we must switch to the Form thread. // By doing this with an asynchronous BeginInvoke, this method returns immediately // an thus does the COM call from TIBCO Spotfire which allows TIBCO Spotfire to continue execution. this.TestForm.BeginInvoke( new MethodInvoker(delegate { this.TestForm.StatusTextBox.Text += "TIBCO Spotfire started."; })); }
public virtual void Started(StartContextWrapper context) { }