MethodReflector

Helper class that allows for the examination of an object’s methods (method instrospection) and their dynamic invocation.

Description

The MethodReflector class allows you to examine an object’s methods (method instrospection) and to invoke them dynamically.

Important points

  • This class has symmetric implementation across all languages supported by the Pip.Services toolkit and it is used to support dynamic data processing. Moreover, because all languages have different casing and case sensitivity rules, this class treats all method names as case insensitive.

Methods

GetMethodNames

Gets the names of all methods implemented in specified object.

GetMethodNames(obj any) []string

  • obj: any - objec to introspect.
  • returns: []string - list with method names.

HasMethod

Checks if an object has a method with a specified name..

HasMethod(obj any, name string) bool

  • obj: any - object to introspect.
  • name: string - name of the method to check.
  • returns: bool - true if the object has the method and false if it doesn’t.

InvokeMethod

Invokes an object method by its name with specified parameters.

InvokeMethod(obj any, name string, args …any) any

  • obj: any - object to invoke.
  • name: string - name of the method to invoke.
  • args: …any - list of method arguments.
  • returns: any - result of the method invocation or nil if the method returns void.

Examples

myObj = MyObject();

methods = MethodReflector.GetMethodNames();
MethodReflector.HasMethod(myObj, "myMethod");
MethodReflector.InvokeMethod(myObj, "myMethod", 123);