AvalonStudio.Extensibility.Threading.JobRunner.Post C# (CSharp) Method

Post() private method

Post action that will be invoked on main thread
private Post ( System.Action action ) : void
action System.Action The method.
return void
		internal void Post(Action action)
		{
			AddJob(new Job(action, true));
		}