Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FUCoin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DistributedSystems4Students
FUCoin
Merge requests
!2
Upgraded the project to the newest Akka Actor version
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Closed
Upgraded the project to the newest Akka Actor version
dev-upgrade
into
master
Overview
1
Commits
1
Changes
2
Closed
Upgraded the project to the newest Akka Actor version
evindar
requested to merge
dev-upgrade
into
master
Jun 14, 2016
Overview
1
Commits
1
Changes
2
For encountered problems and solutions for them see:
#6 (closed)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
b0e95b65
1 commit,
Jun 14, 2016
2 files
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
src/fucoin/MainRemote.java
+
3
−
3
View file @ b0e95b65
Show full file
@@ -2,7 +2,7 @@ package fucoin;
import
java.io.File
;
import
akka.actor.ActorPath
;
import
akka.actor.ActorPath
s
;
import
akka.actor.ActorRef
;
import
akka.actor.ActorSystem
;
import
akka.actor.Address
;
@@ -23,9 +23,9 @@ public class MainRemote {
Address
address
=
new
Address
(
"akka.tcp"
,
"Core"
,
"127.0.0.1"
,
1234
);
System
.
out
.
println
(
address
);
String
path
=
"akka.tcp://Core@127.0.0.1:1234/user/Main"
;
System
.
out
.
println
(
system
.
actorSelection
(
ActorPath
.
fromString
(
path
)));
System
.
out
.
println
(
system
.
actorSelection
(
ActorPath
s
.
fromString
(
path
)));
System
.
out
.
println
(
ActorPath
.
isValidPathElement
(
""
+
address
+
"/user/Main"
));
System
.
out
.
println
(
ActorPath
s
.
isValidPathElement
(
""
+
address
+
"/user/Main"
));
ActorRef
a1
=
system
.
actorOf
(
Wallet
.
props
(
null
,
""
,
"Main2"
,
remoteSuperVisorActor
),
"Main2"
);
}
Loading