idtcpserver接收stream

來源:互聯網
上載者:User

type

 

 TServerHandleThread = class(TThread)

 private

   Mstr:string;

   procedure HandleInput;

 protected

   procedure Execute; override;

 public

   constructor Create(AStyle:Boolean;Str:String);overload;

   destructor Destroy; override;

 end;

 

implementation

 

{ TServerHandleThread }

 

constructorTServerHandleThread.Create(AStyle: Boolean;

 Str: String);

begin

 inherited Create(AStyle);

 Mstr:=Str;

 FreeOnTerminate:=true;

end;

 

destructor TServerHandleThread.Destroy;

begin

 inherited;

end;

 

procedure TServerHandleThread.Execute;

begin

 inherited;

 FreeOnTerminate:=True;

  try

   Synchronize(HandleInput);

 finally

   Free;

 end;

end;

 

procedure TServerHandleThread.HandleInput;

var

 command,content:String;

begin

  try

   command:=Copy(Mstr,0,5);

   content:=AnsiReplaceStr(Mstr,command,'');

   if command='_SOR_' then

   begin

     OptionPage.fornewscores(content);

   end

   else if command='_INF_' then

   begin

     OptionPage.forconnectchange(StrToIntDef(content,0),True);

   end

   else if command='_DIS_' then

   begin

     OptionPage.forconnectchange(StrToIntDef(content,0),False);

   end;

 except

 end;

end;

 

end.

 

 

 

Tcpserver.OnExecute

var

 temp:TStringStream;

 Dstr:string;

 mythread:TServerHandleThread;

begin

 temp:=TStringStream.Create('');

  try

   with AThread.Connection do

   begin

     ReadStream(temp);

     temp.Position:=0;

     Dstr:=temp.DataString;

   end;

 finally

   temp.Free;

 end;

 

 mythread:=TServerHandleThread.Create(False,Dstr);

End;

在execute中先由線程來接收,之後給新的線程來處理

現在我就想到這一個方法來處理    不知道會不會有bug

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.