using System;
using System.Threading;
namespace Renci.SshNet
{
///
/// Represents instance of the SSH shell object
///
public partial class ShellStream
{
/// is null.
partial void ExecuteThread(Action action)
{
ThreadPool.QueueUserWorkItem(o => action());
}
}
}