(method, rref, *args, **kwargs)
| 66 | # RRef. Other args are passed in as arguments to the function called. |
| 67 | # Useful for calling instance methods. |
| 68 | def call_method(method, rref, *args, **kwargs): |
| 69 | return method(rref.local_value(), *args, **kwargs) |
| 70 | |
| 71 | # Given an RRef, return the result of calling the passed in method on the value |
| 72 | # held by the RRef. This call is done on the remote node that owns |
nothing calls this directly
no outgoing calls
no test coverage detected