Browse Source

[2207] Update docs of ZoneWriterLocal

They were outdated, for previous version of the interface.
Michal 'vorner' Vaner 12 years ago
parent
commit
2530e97e66
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/lib/datasrc/memory/zone_writer_local.h

+ 4 - 4
src/lib/datasrc/memory/zone_writer_local.h

@@ -49,10 +49,9 @@ public:
 
 
     /// \brief Loads the data.
     /// \brief Loads the data.
     ///
     ///
-    /// This prepares an empty ZoneData and calls load_action (passed to
-    /// constructor) to fill it with data.
+    /// This calls the load_action (passed to constructor) and stores the
+    /// data for future use.
     ///
     ///
-    /// \throw std::bad_alloc If there's a problem allocating the ZoneData.
     /// \throw isc::Unexpected if it is called the second time in lifetime
     /// \throw isc::Unexpected if it is called the second time in lifetime
     ///     of the object.
     ///     of the object.
     /// \throw Whatever the load_action throws, it is propagated up.
     /// \throw Whatever the load_action throws, it is propagated up.
@@ -60,7 +59,8 @@ public:
 
 
     /// \brief Installs the zone.
     /// \brief Installs the zone.
     ///
     ///
-    /// This simply calls the install_action.
+    /// It modifies the zone table accessible through the segment (passed to
+    /// constructor).
     ///
     ///
     /// \throw isc::Unexpected if it is called the second time in lifetime
     /// \throw isc::Unexpected if it is called the second time in lifetime
     ///     of the object or if load() was not called previously or if
     ///     of the object or if load() was not called previously or if