Safe to use DDP._CurrentMethodInvocation?

Building a GraphQL wrapper for some of our methods. Our first solution was binding to the raw handler functions with a mocked context object, but that doesn’t work out for subsequent method calls which looses the context. But by setting context with DDP._CurrentMethodInvocation.withValue() it works. Anyone knows if this can be considered a stable solution that won’t change too much?