We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e97af3a commit 7c29521Copy full SHA for 7c29521
src/memory/cl_abap_memory_utilities.clas.abap
@@ -20,10 +20,17 @@ CLASS cl_abap_memory_utilities DEFINITION PUBLIC.
20
EXPORTING
21
size TYPE abap_msize.
22
23
+ CLASS-METHODS get_total_used_size
24
+ EXPORTING
25
+ size TYPE abap_msize.
26
+
27
CLASS-METHODS do_garbage_collection.
28
ENDCLASS.
29
30
CLASS cl_abap_memory_utilities IMPLEMENTATION.
31
+ METHOD get_total_used_size.
32
+ RETURN. " todo, implement method
33
+ ENDMETHOD.
34
35
METHOD do_garbage_collection.
36
RETURN. " todo, implement method
0 commit comments