EditorClient.Client.Send C# (CSharp) 메소드

Send() 공개 메소드

public Send ( string message ) : void
message string
리턴 void
        public void Send(string message)
        {
            if (IsSending)
                throw new Exception("Cannot call send while doing SendAndWait, make up your mind");
            lock (queue)
            {
                queue.Enqueue(message);
                if(!IsSending) {
                    SendFromQueue();
                }
            }
        }