src/dubbo/client.py [86:95]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self,
        method_name: str,
        request_serializer: Optional[SerializingFunction] = None,
        response_deserializer: Optional[DeserializingFunction] = None,
    ) -> RpcCallable:
        return self._callable(
            MethodDescriptor(
                method_name=method_name,
                arg_serialization=(request_serializer, None),
                return_serialization=(None, response_deserializer),
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/dubbo/client.py [131:141]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self,
        method_name: str,
        request_serializer: Optional[SerializingFunction] = None,
        response_deserializer: Optional[DeserializingFunction] = None,
    ) -> RpcCallable:
        # create method descriptor
        return self._callable(
            MethodDescriptor(
                method_name=method_name,
                arg_serialization=(request_serializer, None),
                return_serialization=(None, response_deserializer),
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



