akka-actor-jars 1.1.2-java → 1.2.0-java
Sign up to get free protection for your applications and to get access to all the features.
- data/config/akka-reference.conf +24 -10
- data/lib/akka-actor-1.2.jar +0 -0
- metadata +27 -29
- data/lib/akka-actor-1.1.2.jar +0 -0
data/config/akka-reference.conf
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
# Modify as needed.
|
7
7
|
|
8
8
|
akka {
|
9
|
-
version = "1.
|
9
|
+
version = "1.2" # Akka version, checked against the runtime version of Akka.
|
10
10
|
|
11
11
|
enabled-modules = [] # Comma separated list of the enabled modules. Options: ["remote", "camel", "http"]
|
12
12
|
|
@@ -26,8 +26,8 @@ akka {
|
|
26
26
|
|
27
27
|
actor {
|
28
28
|
timeout = 5 # Default timeout for Future based invocations
|
29
|
-
# - Actor:
|
30
|
-
# - UntypedActor:
|
29
|
+
# - Actor: ? and ask
|
30
|
+
# - UntypedActor: ask
|
31
31
|
# - TypedActor: methods with non-void return type
|
32
32
|
serialize-messages = off # Does a deep clone of (non-primitive) messages to ensure immutability
|
33
33
|
throughput = 5 # Default throughput for all ExecutorBasedEventDrivenDispatcher, set to 1 for complete fairness
|
@@ -43,6 +43,8 @@ akka {
|
|
43
43
|
core-pool-size-factor = 1.0 # No of core threads ... ceil(available processors * factor)
|
44
44
|
max-pool-size-factor = 4.0 # Max no of threads ... ceil(available processors * factor)
|
45
45
|
executor-bounds = -1 # Makes the Executor bounded, -1 is unbounded
|
46
|
+
task-queue-size = -1 # Specifies the bounded capacity of the task queue (< 1 == unbounded)
|
47
|
+
task-queue-type = "linked" # Specifies which type of task queue will be used, can be "array" or "linked" (default)
|
46
48
|
allow-core-timeout = on # Allow core threads to time out
|
47
49
|
rejection-policy = "caller-runs" # abort, caller-runs, discard-oldest, discard
|
48
50
|
throughput = 5 # Throughput for ExecutorBasedEventDrivenDispatcher, set to 1 for complete fairness
|
@@ -57,6 +59,14 @@ akka {
|
|
57
59
|
mailbox-push-timeout-time = 10 # Specifies the timeout to add a new message to a mailbox that is full - negative number means infinite timeout
|
58
60
|
# (in unit defined by the time-unit property)
|
59
61
|
}
|
62
|
+
|
63
|
+
debug {
|
64
|
+
receive = "false" # enable function of Actor.loggable(), which is
|
65
|
+
# to log any received message at DEBUG level
|
66
|
+
autoreceive = "false" # enable DEBUG logging of all AutoReceiveMessages
|
67
|
+
# (Kill, PoisonPill and the like)
|
68
|
+
lifecycle = "false" # enable DEBUG logging of actor lifecycle changes
|
69
|
+
}
|
60
70
|
}
|
61
71
|
|
62
72
|
stm {
|
@@ -119,7 +129,7 @@ akka {
|
|
119
129
|
# secure-cookie = "050E0A0D0D06010A00000900040D060F0C09060B" # generate your own with '$AKKA_HOME/scripts/generate_config_with_secure_cookie.sh' or using 'Crypt.generateSecureCookie'
|
120
130
|
secure-cookie = ""
|
121
131
|
|
122
|
-
compression-scheme = "
|
132
|
+
compression-scheme = "" # Options: "zlib" (lzf to come), leave out for no compression
|
123
133
|
zlib-compression-level = 6 # Options: 0-9 (1 being fastest and 9 being the most compressed), default is 6
|
124
134
|
|
125
135
|
layer = "akka.remote.netty.NettyRemoteSupport"
|
@@ -128,7 +138,7 @@ akka {
|
|
128
138
|
hostname = "localhost" # The hostname or IP that clients should connect to
|
129
139
|
port = 2552 # The port clients should connect to. Default is 2552 (AKKA)
|
130
140
|
message-frame-size = 1048576 # Increase this if you want to be able to send messages with large payloads
|
131
|
-
connection-timeout =
|
141
|
+
connection-timeout = 100 # Number in time-unit
|
132
142
|
require-cookie = off # Should the remote server require that it peers share the same secure-cookie (defined in the 'remote' section)?
|
133
143
|
untrusted-mode = off # Enable untrusted mode for full security of server managed actors, allows untrusted clients to connect.
|
134
144
|
backlog = 4096 # Sets the size of the connection backlog
|
@@ -140,15 +150,19 @@ akka {
|
|
140
150
|
|
141
151
|
client {
|
142
152
|
buffering {
|
143
|
-
retry-message-send-on-failure =
|
153
|
+
retry-message-send-on-failure = off # Buffer outbound messages when send failed, if off you'll get an exception instead
|
144
154
|
capacity = -1 # If negative (or zero) then an unbounded mailbox is used (default)
|
145
155
|
# If positive then a bounded mailbox is used and the capacity is set using the property
|
146
156
|
}
|
147
|
-
reconnect-delay = 5
|
148
|
-
read-timeout = 10
|
149
|
-
message-frame-size = 1048576
|
150
|
-
reap-futures-delay = 5
|
157
|
+
reconnect-delay = 5 # Number in time-unit
|
158
|
+
read-timeout = 10 # Number in time-unit
|
159
|
+
message-frame-size = 1048576 # Size in bytes
|
160
|
+
reap-futures-delay = 5 # Number in time-unit
|
151
161
|
reconnection-time-window = 600 # Maximum time window that a client should try to reconnect for
|
152
162
|
}
|
153
163
|
}
|
164
|
+
|
165
|
+
test {
|
166
|
+
timefactor = "1.0" # factor by which to scale timeouts during tests, e.g. to account for shared build system load
|
167
|
+
}
|
154
168
|
}
|
Binary file
|
metadata
CHANGED
@@ -2,31 +2,30 @@
|
|
2
2
|
name: akka-actor-jars
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 1.
|
5
|
+
version: 1.2.0
|
6
6
|
platform: java
|
7
7
|
authors:
|
8
|
-
|
8
|
+
- Theo Hultberg
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-
|
14
|
-
default_executable:
|
13
|
+
date: 2011-10-16 00:00:00 Z
|
15
14
|
dependencies:
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: scala-library-jars
|
17
|
+
prerelease: false
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
20
|
+
requirements:
|
21
|
+
- - ~>
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 2.9.0
|
24
|
+
type: :runtime
|
25
|
+
version_requirements: *id001
|
27
26
|
description: ""
|
28
27
|
email:
|
29
|
-
|
28
|
+
- theo@iconara.net
|
30
29
|
executables: []
|
31
30
|
|
32
31
|
extensions: []
|
@@ -34,11 +33,10 @@ extensions: []
|
|
34
33
|
extra_rdoc_files: []
|
35
34
|
|
36
35
|
files:
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
has_rdoc: true
|
36
|
+
- lib/akka-actor-jars.rb
|
37
|
+
- lib/akka-actor-1.2.jar
|
38
|
+
- config/akka-reference.conf
|
39
|
+
- config/akka.conf
|
42
40
|
homepage: http://akka.io
|
43
41
|
licenses: []
|
44
42
|
|
@@ -46,23 +44,23 @@ post_install_message:
|
|
46
44
|
rdoc_options: []
|
47
45
|
|
48
46
|
require_paths:
|
49
|
-
|
47
|
+
- lib
|
50
48
|
required_ruby_version: !ruby/object:Gem::Requirement
|
51
49
|
none: false
|
52
50
|
requirements:
|
53
|
-
|
54
|
-
|
55
|
-
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: "0"
|
56
54
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
55
|
none: false
|
58
56
|
requirements:
|
59
|
-
|
60
|
-
|
61
|
-
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: "0"
|
62
60
|
requirements: []
|
63
61
|
|
64
62
|
rubyforge_project: akka-actor-jars
|
65
|
-
rubygems_version: 1.
|
63
|
+
rubygems_version: 1.8.11
|
66
64
|
signing_key:
|
67
65
|
specification_version: 3
|
68
66
|
summary: Akka Actors JARs
|
data/lib/akka-actor-1.1.2.jar
DELETED
Binary file
|