--
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To view this discussion on the web visit https://groups.google.com/d/msg/akka-user/-/3kt1VCMevrYJ.
To post to this group, send email to akka...@googlegroups.com.
To unsubscribe from this group, send email to akka-user+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/akka-user?hl=en.
--
You received this message because you are subscribed to the Google Groups "Akka User List" group.
To view this discussion on the web visit https://groups.google.com/d/msg/akka-user/-/3kt1VCMevrYJ.
To post to this group, send email to akka...@googlegroups.com.
To unsubscribe from this group, send email to akka-user+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/akka-user?hl=en.
To unsubscribe from this group, send email to akka-user+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/akka-user?hl=en.
>>> For more options, visit this group at
>>> http://groups.google.com/group/akka-user?hl=en.
>>
>>
>>
>>
>> --
>> Josh Marcus
>> Senior GIS Software Architect
>>
>> Azavea | T: 215.701.7505
>> www.azavea.com
>
> --
> You received this message because you are subscribed to the Google Groups
> "Akka User List" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/akka-user/-/O-h9Evj_Yl0J.
>
> To post to this group, send email to akka...@googlegroups.com.
> To unsubscribe from this group, send email to
If I'm understanding the page correctly, the recommended method of starting an instance of the Microkernel on each machine is using the akka script in the /bin/ folder of the Akka download, calling it asbin/akka [class name]Do I just add the parameters to the class in front of it? Sayclass Foo(x: Int) extends Bootable { /* class definition here */ }and call it asbin/akka Foo 5
To view this discussion on the web visit https://groups.google.com/d/msg/akka-user/-/DLb6oB-WRNkJ.
To unsubscribe from this group, send email to akka-user+...@googlegroups.com.
If I'm understanding the page correctly, the recommended method of starting an instance of the Microkernel on each machine is using the akka script in the /bin/ folder of the Akka download, calling it asbin/akka [class name]Do I just add the parameters to the class in front of it? Sayclass Foo(x: Int) extends Bootable { /* class definition here */ }and call it asbin/akka Foo 5?
To view this discussion on the web visit https://groups.google.com/d/msg/akka-user/-/DLb6oB-WRNkJ.
To post to this group, send email to akka...@googlegroups.com.
To unsubscribe from this group, send email to akka-user+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/akka-user?hl=en.
7 aug 2012 kl. 19:57 skrev adelbertc:If I'm understanding the page correctly, the recommended method of starting an instance of the Microkernel on each machine is using the akka script in the /bin/ folder of the Akka download, calling it asbin/akka [class name]Do I just add the parameters to the class in front of it? Sayclass Foo(x: Int) extends Bootable { /* class definition here */ }and call it asbin/akka Foo 5?No, Bootables are instantiated without arguments, see the example. If you want to pass data from the command line you can use any usual Java technique (system properties, environment variables, reading a config file, etc.).