You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2015/06/23 17:58:20 UTC

mesos git commit: Adding a link to example framework implementations (RENDLER).

Repository: mesos
Updated Branches:
  refs/heads/master 6e210e5cc -> 0f5fed7a5


Adding a link to example framework implementations (RENDLER).

Review: https://reviews.apache.org/r/35622


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/0f5fed7a
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/0f5fed7a
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/0f5fed7a

Branch: refs/heads/master
Commit: 0f5fed7a56d96e1d542618530b89a6a8403a67fa
Parents: 6e210e5
Author: Artem Harutyunyan <ar...@harutyunyan.am>
Authored: Tue Jun 23 08:58:04 2015 -0700
Committer: Benjamin Hindman <be...@gmail.com>
Committed: Tue Jun 23 08:58:05 2015 -0700

----------------------------------------------------------------------
 docs/app-framework-development-guide.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/0f5fed7a/docs/app-framework-development-guide.md
----------------------------------------------------------------------
diff --git a/docs/app-framework-development-guide.md b/docs/app-framework-development-guide.md
index 020654a..d651ec8 100644
--- a/docs/app-framework-development-guide.md
+++ b/docs/app-framework-development-guide.md
@@ -6,11 +6,11 @@ layout: documentation
 
 In this document we refer to Mesos applications as "frameworks".
 
-See one of the example framework schedulers in `MESOS_HOME/src/examples/` to get an idea of what a Mesos framework scheduler and executor in the language of your choice looks like.
+See one of the example framework schedulers in `MESOS_HOME/src/examples/` to get an idea of what a Mesos framework scheduler and executor in the language of your choice looks like. [RENDLER](https://github.com/mesosphere/RENDLER) provides example framework implementations in C++, Go, Haskell, Java, Python and Scala.
 
 ## Create your Framework Scheduler
 
-You can write a framework scheduler in C, C++, Java/Scala, or Python. Your framework scheduler should inherit from the `Scheduler` class (see API below). Your scheduler should create a SchedulerDriver (which will mediate communication between your scheduler and the Mesos master) and then call `SchedulerDriver.run()`
+You can write a framework scheduler in C, C++, Java/Scala, or Python. Your framework scheduler should inherit from the `Scheduler` class (see API below). Your scheduler should create a SchedulerDriver (which will mediate communication between your scheduler and the Mesos master) and then call `SchedulerDriver.run()`.
 
 ### Scheduler API