-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Akka.js status #4
Comments
a POC with working serialization is already here. |
Hi @andreaTP, thanks for this excellent work! Is this status up to date as of January 2019? What's the overall status of this project? |
Hey @shafqatevo , thanks for the question and I will be happy to follow up more exaustively in the gitter channel! Consider that it is integrated in the official Akka documentation and it has been used by several speakers to show Akka capabilities in scalafiddle. |
Great! Can you please elaborate what capabilities we would miss as developers until remoting is completed? Can we currently use web workers as actors? |
@shafqatevo I will be really happy to elaborate around the topic in the gitter channel. Sorry but this is not the right space to chat. Thanks for the interest in the project!!! |
AKKA-ACTOR
actor/
dispatch/
event/
pattern/
routing/
serialization/
util/
TODO
context
by rewriting IR inActorCell.scala
akka.util.JS*
akka-remote
)typesafe.config.Config
(it's 100% Java, so we can't cross-compile. alternatives? see @mfirry 's suggestion in port typesafe.config #5 )sun.misc.Unsafe
(stub implementation vs mixin with traits JS/JVM specific methods?)DONE
JSMap
toTreeMap
System.getEnv
andSystem.getProperty
calls to remove (eg:ActorSystem.scala
)mailboxTypes
are missingThread.currentThread().interrupt()
)event/
(and therefore Logging)setActorFields
inActor.scala
ThreadLocal
, etc) fromActorCell.scala
and addlookupAndSetField
ActorRefProvider.scala
override def
in theEventLoopScheduler
(they override final methods, had to fix by hand)dispatch/AbstractDispatcher.scala
contains some thread-specific logic, refactor it out?AKKA-REMOTE
Currently blocked by:
Any
(scala pickling should help solve the issue: @phaller @heathermiller )The text was updated successfully, but these errors were encountered: