File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
- --protected --no-private --embed-mixins --output-dir ./doc --markup markdown
1
+ --protected
2
+ --no-private
3
+ --embed-mixins
4
+ --output-dir ./doc
5
+ --markup markdown
6
+ -
7
+ lib/concurrent/actress/doc.md
Original file line number Diff line number Diff line change 5
5
6
6
module Concurrent
7
7
8
- # {include: file:lib/concurrent/actress/doc.md}
8
+ # Fore more information please see { file:lib/concurrent/actress/doc.md Actress quide}.
9
9
module Actress
10
10
11
11
require 'concurrent/actress/type_check'
Original file line number Diff line number Diff line change @@ -72,12 +72,12 @@ def self.included(base)
72
72
end
73
73
74
74
module ClassMethods
75
- # behaves as {Actress.spawn} but class_name is omitted
75
+ # behaves as {Concurrent:: Actress.spawn} but class_name is omitted
76
76
def spawn ( name_or_opts , *args , &block )
77
77
Actress . spawn spawn_optionify ( name_or_opts , *args ) , &block
78
78
end
79
79
80
- # behaves as {Actress.spawn!} but class_name is omitted
80
+ # behaves as {Concurrent:: Actress.spawn!} but class_name is omitted
81
81
def spawn! ( name_or_opts , *args , &block )
82
82
Actress . spawn! spawn_optionify ( name_or_opts , *args ) , &block
83
83
end
Original file line number Diff line number Diff line change 1
- # Light-weighted implement of Actors. Inspired by Akka and Erlang.
1
+ # Light-weighted implementation of Actors. Inspired by Akka and Erlang.
2
2
3
- Actors are using a thread-pool by default which makes them very cheap to create and discard.
3
+ Actors are sharing a thread-pool by default which makes them very cheap to create and discard.
4
4
Thousands of actors can be created allowing to brake the program to small maintainable pieces
5
5
without breaking single responsibility principles.
6
6
You can’t perform that action at this time.
0 commit comments