Skip to content

Commit

Permalink
Removed unit BoldOSSMessage #24
Browse files Browse the repository at this point in the history
  • Loading branch information
bero committed Dec 7, 2024
1 parent 3783251 commit 6d9e32c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 413 deletions.
237 changes: 0 additions & 237 deletions Source/BoldOSSMessage.pas

This file was deleted.

10 changes: 5 additions & 5 deletions Source/BoldSnooper.pas
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
interface

uses
Classes,
BoldAbstractSnooper,
BoldPropagatorInterfaces_TLB,
BoldDefs,
Expand Down Expand Up @@ -42,7 +43,6 @@ implementation
uses
Sysutils,
Variants,
Classes,
BoldPropagatorConstants,
BoldLockingDefs,
BoldUtils,
Expand Down Expand Up @@ -82,10 +82,10 @@ procedure TBoldSnooper.TransmitEvents(const ClientID: TBoldClientID);
try
if (Events.Count <> 0) then
CheckError(Propagator.SendEvents(ClientID, StringListToVarArray(Events)), 'SendEvents');
if (Subscriptions.Count <> 0) then
CheckError(Propagator.AddSubscriptions(ClientID, StringListToVarArray(Subscriptions)), 'AddSubscriptions');
if (CancelledSubscriptions.Count <> 0) then
CheckError(Propagator.CancelSubscriptions(ClientID, StringListToVarArray(CancelledSubscriptions)), 'CancelSubscriptions');
// if (Subscriptions.Count <> 0) then
// CheckError(Propagator.AddSubscriptions(ClientID, StringListToVarArray(Subscriptions)), 'AddSubscriptions');
// if (CancelledSubscriptions.Count <> 0) then
// CheckError(Propagator.CancelSubscriptions(ClientID, StringListToVarArray(CancelledSubscriptions)), 'CancelSubscriptions');
except on E: EOleSysError do
DoPropagatorFailure(self, E.Message);
end;
Expand Down
Loading

0 comments on commit 6d9e32c

Please sign in to comment.