You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a helper class that we use to delete dynamic objects. (And I now some other companies use similar methods too).
USING Foo.Util.GarbageCollectorHelper FROM PROPATH.
BLOCK-LEVEL ON ERROR UNDO, THROW.
DEFINE VARIABLE xObj AS HANDLE NO-UNDO.
CREATE BUFFER xObj FOR TABLE "Item" NO-ERROR.
FINALLY:
GarbageCollectorHelper:DeleteObject(xObj).
END.
Could it be possible to add custom parameter to the rule, where we could give the name of the class and method, like GarbageCollectorHelper:DeleteObject (or a list of class:method would be even better), and the rule would use this in addition to DELETE-OBJECT phrase to locate where object is deleted?
The text was updated successfully, but these errors were encountered:
We have a helper class that we use to delete dynamic objects. (And I now some other companies use similar methods too).
Could it be possible to add custom parameter to the rule, where we could give the name of the class and method, like
GarbageCollectorHelper:DeleteObject
(or a list of class:method would be even better), and the rule would use this in addition to DELETE-OBJECT phrase to locate where object is deleted?The text was updated successfully, but these errors were encountered: