Fixing ticket #907

This commit is contained in:
Viktor Klang 2011-06-15 18:24:38 +02:00
parent 79f71fd362
commit 0c21afebdd

View file

@ -65,12 +65,10 @@ The 'PinnedDispatcher' binds a dedicated OS thread to each specific Actor. The m
It would normally by used from within the actor like this:
.. code-block:: java
.. code-block:: scala
class MyActor extends Actor {
public MyActor() {
self.dispatcher = Dispatchers.newPinnedDispatcher(self)
}
...
}