Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
bcafb8b9
Commit
bcafb8b9
authored
Sep 06, 2011
by
JINMEI Tatuya
Browse files
[1068] added a note about possible future extensions to getUpdater()
of the in-memory data source client.
parent
4ef59f25
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/datasrc/memory_datasrc.h
View file @
bcafb8b9
...
@@ -267,7 +267,13 @@ public:
...
@@ -267,7 +267,13 @@ public:
virtual
ZoneIteratorPtr
getIterator
(
const
isc
::
dns
::
Name
&
name
)
const
;
virtual
ZoneIteratorPtr
getIterator
(
const
isc
::
dns
::
Name
&
name
)
const
;
/// In-memory data source is read-only, so this derived method will
/// In-memory data source is read-only, so this derived method will
/// result in a NotImplemented (once merged) exception.
/// result in a NotImplemented exception.
///
/// \note We plan to use a database-based data source as a backend
/// persistent storage for an in-memory data source. When it's
/// implemented we may also want to allow the user of the in-memory client
/// to update via its updater (this may or may not be a good idea and
/// is subject to further discussions).
virtual
ZoneUpdaterPtr
getUpdater
(
const
isc
::
dns
::
Name
&
name
,
virtual
ZoneUpdaterPtr
getUpdater
(
const
isc
::
dns
::
Name
&
name
,
bool
replace
)
const
;
bool
replace
)
const
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment