AvalonStudio.Extensibility.Threading.JobRunner.Post C# (CSharp) Метод

Post() приватный Метод

Post action that will be invoked on main thread
private Post ( System.Action action ) : void
action System.Action The method.
Результат void
		internal void Post(Action action)
		{
			AddJob(new Job(action, true));
		}