You've already forked lazarus-ccr
Add "GetTransportName()" method to ITransport
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1518 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -35,7 +35,8 @@ Type
|
||||
FAdress: string;
|
||||
FContentType: string;
|
||||
FFormat : string;
|
||||
Public
|
||||
Public
|
||||
function GetTransportName() : string; override;
|
||||
procedure SendAndReceive(ARequest,AResponse:TStream); override;
|
||||
Published
|
||||
property ContentType : string Read FContentType Write FContentType;
|
||||
@ -50,6 +51,11 @@ implementation
|
||||
|
||||
{ TInProcessTransport }
|
||||
|
||||
function TInProcessTransport.GetTransportName() : string;
|
||||
begin
|
||||
Result := sTRANSPORT_NAME;
|
||||
end;
|
||||
|
||||
procedure TInProcessTransport.SendAndReceive(ARequest, AResponse: TStream);
|
||||
Var
|
||||
bffr : IRequestBuffer;
|
||||
|
Reference in New Issue
Block a user