syft.core.node.common.action.function_or_constructor_action

Classes

RunFunctionOrConstructorAction(path, args, ...)

When executing a RunFunctionOrConstructorAction, a Node will run a function defined by the action's path attribute and keep the returned value in its store.

class syft.core.node.common.action.function_or_constructor_action.RunFunctionOrConstructorAction(path, args, kwargs, id_at_location, address, msg_id=None, is_static=False)[source]

Bases: syft.core.node.common.action.common.ImmediateActionWithoutReply

When executing a RunFunctionOrConstructorAction, a Node will run a function defined by the action’s path attribute and keep the returned value in its store.

path

the dotted path to the function to call

args

args to pass to the function. They should be pointers to objects located on the Node that will execute the action.

kwargs

kwargs to pass to the function. They should be pointers to objects located on the Node that will execute the action.

static get_protobuf_schema()[source]

Return the type of protobuf object which stores a class of this type

As a part of serialization and deserialization, we need the ability to lookup the protobuf object type directly from the object type. This static method allows us to do this.

Importantly, this method is also used to create the reverse lookup ability within the metaclass of Serializable. In the metaclass, it calls this method and then it takes whatever type is returned from this method and adds an attribute to it with the type of this class attached to it. See the MetaSerializable class for details.

Returns

the type of protobuf object which corresponds to this class.

Return type

GeneratedProtocolMessageType

remap_input(current_input, new_input)[source]

Redefines some of the arguments of the function