SecureBlackbox

200+ components and classes for all aspects of digital security of your data

Filter: C#/Java  VB.NET  Pascal  C++  


TElCustomSSHSubsystemHandler.Execute

TElCustomSSHSubsystemHandler     


 

This function has to contain data exchange loop

 

Declaration

[C#/Java]
    virtual void Execute();

[VB.NET]
    Overridable Sub Execute()

[Pascal]
    procedure Execute; virtual;

[C++]
    not implemented;

   

Description

    You should not call this method yourself: it is called by the handler in synchronous mode.
    The data exchange loop can look like this:

    while ((not Terminated) and (Connected) do
    begin
      ReceiveData(...); //Data receiving from Connection
      //data processing and analysis
      SendData(...); //sending of some data to Connection
    end;

   
Back to top