Commit d04af15c authored by Dominik Charousset's avatar Dominik Charousset

documentation

parent a9ba2f52
...@@ -61,15 +61,14 @@ class actor_addressing { ...@@ -61,15 +61,14 @@ class actor_addressing {
/** /**
* @brief Serializes @p ptr to @p sink according * @brief Serializes @p ptr to @p sink according
* to the implemented addressing. * to the implemented addressing.
* @note Implementation should call {@link actor_registry::put()} * @warning Not thread-safe
* to be able to restore instances later on from registry.
* @note Thi
*/ */
virtual void write(serializer* sink, const actor_ptr& ptr) = 0; virtual void write(serializer* sink, const actor_ptr& ptr) = 0;
/** /**
* @brief Deserializes an actor from @p source according * @brief Deserializes an actor from @p source according
* to the implemented addressing. * to the implemented addressing.
* @warning Not thread-safe
*/ */
virtual actor_ptr read(deserializer* source) = 0; virtual actor_ptr read(deserializer* source) = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment