Repository: mesos Updated Branches: refs/heads/master c4db2df33 -> a6a3dcaa5
Added documentation about MesosIsolator. Review: https://reviews.apache.org/r/36804 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/a6a3dcaa Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/a6a3dcaa Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/a6a3dcaa Branch: refs/heads/master Commit: a6a3dcaa529b3b37d7534ff8bbd8f333045c7c81 Parents: c4db2df Author: Jie Yu <[email protected]> Authored: Fri Jul 24 16:28:16 2015 -0700 Committer: Jie Yu <[email protected]> Committed: Fri Jul 24 16:57:52 2015 -0700 ---------------------------------------------------------------------- src/slave/containerizer/isolator.hpp | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/a6a3dcaa/src/slave/containerizer/isolator.hpp ---------------------------------------------------------------------- diff --git a/src/slave/containerizer/isolator.hpp b/src/slave/containerizer/isolator.hpp index aa6f1e6..1482b4c 100644 --- a/src/slave/containerizer/isolator.hpp +++ b/src/slave/containerizer/isolator.hpp @@ -34,6 +34,9 @@ namespace slave { class MesosIsolatorProcess; +// A wrapper class that implements the 'Isolator' interface which is +// backed by an 'MesosIsolatorProcess'. This helper class is useful +// for programmers to write asynchronous isolators. class MesosIsolator : public mesos::slave::Isolator { public:
