I'm interested in the Rest feature for now, so can I configure my SBT
project to just include the Akka dependencies and use jetty-run from
SBT to test, or do I have to deploy to the Akka standalone server?
I've tried to decipher the instructions on the site, but there are not
clear at all.
If some one has a sample project with a separate SBT build that I can
use to get started, that would be appreciated.
Thanks
--
You received this message because you are subscribed to the Google Groups "Akka User List" group.
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.
<web-app>
...
<listener>
<listener-class>se.scalablesolutions.akka.Kernel</listener-class>
</listener>
...
</web-app>
It is actually a bit confusing. The microkernel is itself of course
not needed. It is just that the listener class resides in the
akka-kernel module.
Viktor, can it be moved?
--
Jonas Bonér
work: http://jayway.com
code: http://akkasource.org
blog: http://jonasboner.com
twitter: @jboner
On 3 April 2010 18:59, Dustin Whitney <dustin....@gmail.com> wrote:It is actually a bit confusing. The microkernel is itself of course
> Oh, so the kernel is required for the REST stuff? Well damn, I'm handing
> out all sorts of misinformation :(
not needed. It is just that the listener class resides in the
akka-kernel module.
Viktor, can it be moved?
That sounds like a good idea.
If you hack up a config file format and parser for Scala code then I'd
be happy to support it. :-)
--
Jonas Bonér
work: http://jayway.com
<listener>Please give me feedback and if it's OK or KO for inclusion in master.
<listener-class>se.scalablesolutions.akka.kernel.Kernel</listener-class>
</listener>
becomes
<listener>
<listener-class>se.scalablesolutions.akka.jxee.AkkaJxEELifecycle</listener-class>
</listener>
-- Martin Krasser Blog: http://krasserm.blogspot.com Twitter: http://twitter.com/mrt1nz
web is good.
If it will only ever be servlet stuff in there, then 'servlet' is good.
On Mon, Apr 5, 2010 at 12:49 PM, Jonas Bonér <jo...@jonasboner.com> wrote:If it will only ever be servlet stuff in there, then 'servlet' is good.
I'd think so, since it's basically only gluing together a web.xml with Akka,
what about AkkaJxEELifecycle?
Rename to:
se.scalablesolutions.akka.servlet.Lifecycle?
se.scalablesolutions.akka.servlet.BootLoader?
se.scalablesolutions.akka.servlet.Bootstrap?
se.scalablesolutions.akka.servlet.ContextListener?
se.scalablesolutions.akka.servlet.AkkaLifecycle?
se.scalablesolutions.akka.servlet.AkkaBootLoader?
se.scalablesolutions.akka.servlet.AkkaBootstrap?
suggestions..
What say you?
On 5 April 2010 12:58, Viktor Klang <viktor...@gmail.com> wrote:On Mon, Apr 5, 2010 at 12:49 PM, Jonas Bonér <jo...@jonasboner.com> wrote:If it will only ever be servlet stuff in there, then 'servlet' is good.
I'd think so, since it's basically only gluing together a web.xml with Akka,Good. Go for that.
what about AkkaJxEELifecycle?
Rename to:
se.scalablesolutions.akka.servlet.Lifecycle?
se.scalablesolutions.akka.servlet.BootLoader?
se.scalablesolutions.akka.servlet.Bootstrap?
se.scalablesolutions.akka.servlet.ContextListener?
se.scalablesolutions.akka.servlet.AkkaLifecycle?
se.scalablesolutions.akka.servlet.AkkaBootLoader?
se.scalablesolutions.akka.servlet.AkkaBootstrap?
suggestions..
What say you?
What is most intuitive for a web developer (which I'm not so I have no clue)?
Hey guys,
can anyone explain why the need to include "org.eclipse.jetty" %
"jetty-server" when "jetty-webapp" is also included? I mean, webapp
does include the server (according to this anyway
http://wiki.eclipse.org/Jetty/Reference/Dependencies#Dependency_Tree)
and pulling just webapp gets you the server jars (I just tried it) Is
there something I'm missing here?
> On 5 April 2010 13:18, Viktor Klang <viktor.kl...@gmail.com> wrote:
>
>
>
> > On Mon, Apr 5, 2010 at 1:10 PM, Jonas Bonér <jo...@jonasboner.com> wrote:
>
> >> On 5 April 2010 12:58, Viktor Klang <viktor.kl...@gmail.com> wrote:
>
> >>> On Mon, Apr 5, 2010 at 12:49 PM, Jonas Bonér <jo...@jonasboner.com>wrote:
>
> >>>> If it will only ever be servlet stuff in there, then 'servlet' is good.
>
> >>> I'd think so, since it's basically only gluing together a web.xml with
> >>> Akka,
>
> >> Good. Go for that.
>
> >>> what about AkkaJxEELifecycle?
> >>> Rename to:
> >>> se.scalablesolutions.akka.servlet.Lifecycle?
> >>> se.scalablesolutions.akka.servlet.BootLoader?
> >>> se.scalablesolutions.akka.servlet.Bootstrap?
> >>> se.scalablesolutions.akka.servlet.ContextListener?
> >>> se.scalablesolutions.akka.servlet.AkkaLifecycle?
> >>> se.scalablesolutions.akka.servlet.AkkaBootLoader?
> >>> se.scalablesolutions.akka.servlet.AkkaBootstrap?
> >>> suggestions..
>
> >>> What say you?
>
> >> What is most intuitive for a web developer (which I'm not so I have no
> >> clue)?
>
> > Let's go with a name that's decipherable for both servlet veterans and
> > newbies alike:
>
> > se.scalablesolutions.akka.servlet.Initializer
>
> >>> I think 'jee' is very vague. Can mean all from JTA, EJB, JSP to
> >>>> servlet.
>
> >>>> On 5 April 2010 12:42, Viktor Klang <viktor.kl...@gmail.com> wrote:> >>>>> On Mon, Apr 5, 2010 at 7:40 AM, Jonas Bonér <jo...@jonasboner.com>wrote:
>
> >>>>> Hi guys!
>
> >>>>> Thanks for the feedback,
> >>>>> I only chose jxee because I was going to name it j2ee, but it isn't
> >>>>> specific to j2ee so I put in a placeholder for version :-)
>
> >>>>> "web" feels a bit generic, sounds a bit as the superproject for
> >>>>> rest/comet/lift,
>
> >>>>> "jee" could work well,
>
> >>>>> how about plain and simple: "servlet"?
>
>
> >>>>>> On 5 April 2010 07:38, Martin Krasser <krass...@googlemail.com>
> >>>>>> wrote:> >>>>>> > On Sat, Apr 3, 2010 at 7:26 PM, Jonas Bonér <jo...@jonasboner.com>
> >>>>>> > Looks good to me! What about using 'web' instead of 'jxee'?
>
> >>>>>> web is good.
>
> >>>>>> > Am 05.04.2010 00:23, schrieb Viktor Klang:
>
> >>>>>> > Hi guys,
>
> >>>>>> > I just pushed a new branch called "jxee" to origin,
>
> >>>>>> > please have a look at This commit to see what I've done.
>
> >>>>>> > The only obvious breaking change is:
>
> >>>>>> > <listener>
>
> >>>>>> <listener-class>se.scalablesolutions.akka.kernel.Kernel</listener-class>
>
> >>>>>> > </listener>
>
> >>>>>> > becomes
>
> >>>>>> > <listener>
>
> >>>>>> <listener-class>se.scalablesolutions.akka.jxee.AkkaJxEELifecycle</listener- class>
>
> >>>>>> > </listener>
>
> >>>>>> > Please give me feedback and if it's OK or KO for inclusion in
> >>>>>> master.
>
> >>>>>> > May the iPad be with you.
>
> >>>>>> > Cheers,
>
> >>>>>> wrote:
>
> >>>>>> >> On 3 April 2010 19:08, Viktor Klang <viktor.kl...@gmail.com>
> >>>>>> wrote:> >>>>>> jo...@jonasboner.com>
>
> >>>>>> >> > On Sat, Apr 3, 2010 at 7:00 PM, Jonas Bonér <
> >>>>>> >> > wrote:
>
> >>>>>> >> >> On 3 April 2010 18:59, Dustin Whitney <dustin.whit...@gmail.com>
> >>>>>> wrote:
> >>>>>> >> >> > Oh, so the kernel is required for the REST stuff? Well damn,
> >>>>>> I'm
> >>>>>> >> >> > handing
> >>>>>> >> >> > out all sorts of misinformation :(
>
> >>>>>> >> >> It is actually a bit confusing. The microkernel is itself of
> >>>>>> course
> >>>>>> >> >> not needed. It is just that the listener class resides in the
> >>>>>> >> >> akka-kernel module.
> >>>>>> >> >> Viktor, can it be moved?
>
> >>>>>> >> > Hmmm, perhaps we should create an akka-j2ee module that has
> >>>>>> everything
> >>>>>> >> > but
> >>>>>> >> > the Grizzly-stuff, and then make Akka-kernel depend on that and
> >>>>>> add the
> >>>>>> >> > embedded Grizzly.
>
> >>>>>> >> > So if you want to deploy to an ee container, you use the
> >>>>>> akka-j2ee
> >>>>>> >> > module,
> >>>>>> >> > and if you want to go for standalone you go for akka-standalone?
>
> >>>>>> >> That sounds like a good idea.
>
> >>>>>> >> > Please see, Kernel for a visual.
>
> >>>>>> >> > More thoughts please! :-)
>
> >>>>>> >> >> > On Sat, Apr 3, 2010 at 12:54 PM, Viktor Klang
> >>>>>> >> >> > <viktor.kl...@gmail.com>
> >>>>>> >> >> > wrote:
>
> >>>>>> >> >> >> Hi Erick!
>
> >>>>>> >> >> >> It should be:
>
> >>>>>> >> >> >> <listener>
> >>>>>> >> >> >> <listener-class>se.
> >>>>>> >> >> >> scalablesolutions.akka.kernel.Kernel</listener-class>
> >>>>>> >> >> >> </listener>
> >>>>>> >> >> >> This was recently changed, I am very sorry for the
> >>>>>> misdocumentation,
> >>>>>> >> >> >> I
> >>>>>> >> >> >> have updated the docs online to reflect the new package new.
>
> >>>>>> >> >> >> Happy hAkking!
>
> >>>>>> >> >> >> On Fri, Apr 2, 2010 at 9:41 PM, Erick Fleming
> >>>>>> >> >> >> <efleming...@gmail.com>
> >>>>>> >> >> >>> <viktor.kl...@gmail.com>
> >>>>>> >> >> >>> wrote:
>
> >>>>>> >> >> >>>> Hi Erick!
>
> >>>>>> >> >> >>>> This is from:http://doc.akkasource.org/rest
>
> >>>>>> >> >> >>>> When deploying in another servlet container:
>
> >>>>>> >> >> >>>> If you deploy Akka in another JEE container, don't forget
> >>>>>> to add
> >>>>>> >> >> >>>> Akkas
> >>>>>> >> >> >>>> initialization and cleanup hook:
>
> >>>>>> >> >> >>>> <web-app>
> >>>>>> >> >> >>>> ...
> >>>>>> >> >> >>>> <listener>
>
> >>>>>> <listener-class>se.scalablesolutions.akka.Kernel</listener-class>
>
> >>>>>> >> >> >>>> </listener>
> >>>>>> >> >> >>>> ...
> >>>>>> >> >> >>>> </web-app>
>
> >>>>>> >> >> >>>> Please let me know if this helps or not,
>
> >>>>>> >> >> >>>> Cheers!
>
> >>>>>> >> >> >>>> On Thu, Apr 1, 2010 at 9:01 AM, Erick Fleming
> >>>>>> >> >> >>>> <efleming...@gmail.com>
> >>>>>> >> >> >>>>>> A bit outdated now, but it should work the same with
> >>>>>> later
> >>>>>> >> >> >>>>>> releases.
>
> >>>>>> >> >> >>>>>> On 1 April 2010 02:48, efleming969 <
> >>>>>> efleming...@gmail.com>
> >>>>>> >> >> >>>>>>> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>>> .
> >>>>>> >> >> >>>>>>> For more options, visit this group at
> >>>>>> >> >> >>>>>>>http://groups.google.com/group/akka-user?hl=en.
>
> >>>>>> >> >> >>>>>> --
> >>>>>> >> >> >>>>>> Jonas Bonér
>
> >>>>>> >> >> >>>>>> twitter: @jboner
> >>>>>> >> >> >>>>>> blog: http://jonasboner.com
> >>>>>> >> >> >>>>>> work: http://scalablesolutions.se
> >>>>>> >> >> >>>>>> code: http://github.com/jboner
> >>>>>> >> >> >>>>>> code: http://akkasource.org
> >>>>>> >> >> >>>>>> also: http://letitcrash.com
>
> >>>>>> >> >> >>>>>> --
> >>>>>> >> >> >>>>>> You received this message because you are subscribed to
> >>>>>> the
> >>>>>> >> >> >>>>>> Groups "Akka User List" group.
> >>>>>> >> >> >>>>>> To post to this group, send email to
> >>>>>> akka...@googlegroups.com.
> >>>>>> >> >> >>>>>> To unsubscribe from this group, send email to
> >>>>>> >> >> >>>>>> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>>> .
> >>>>>> >> >> >>>>>> For more options, visit this group at
> >>>>>> >> >> >>>>>>http://groups.google.com/group/akka-user?hl=en.
>
> >>>>>> >> >> >>>>> --
> >>>>>> >> >> >>>>> Erick Fleming
>
> >>>>>> >> >> >>>>> --
> >>>>>> >> >> >>>>> You received this message because you are subscribed to
> >>>>>> the
> >>>>>> >> >> >>>>> Groups "Akka User List" group.
> >>>>>> >> >> >>>>> To post to this group, send email to
> >>>>>> akka...@googlegroups.com.
> >>>>>> >> >> >>>>> To unsubscribe from this group, send email to
> >>>>>> >> >> >>>>> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>>> .
> >>>>>> >> >> >>>>> For more options, visit this group at
> >>>>>> >> >> >>>>>http://groups.google.com/group/akka-user?hl=en.
>
> >>>>>> >> >> >>>> --
> >>>>>> >> >> >>>> Viktor Klang
> >>>>>> >> >> >>>> | "A complex system that works is invariably
> >>>>>> >> >> >>>> | found to have evolved from a simple system
> >>>>>> >> >> >>>> | that worked." - John Gall
>
> >>>>>> >> >> >>>> Akka - the Actor Kernel: Akkasource.org
> >>>>>> >> >> >>>> Twttr: twitter.com/viktorklang
>
> >>>>>> >> >> >>>> --
> >>>>>> >> >> >>>> You received this message because you are subscribed to the
> >>>>>> >> >> >>>> Groups "Akka User List" group.
> >>>>>> >> >> >>>> To post to this group, send email to
> >>>>>> akka...@googlegroups.com.
> >>>>>> >> >> >>>> To unsubscribe from this group, send email to
> >>>>>> >> >> >>>> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>>> .
> >>>>>> >> >> >>>> For more options, visit this group at
> >>>>>> >> >> >>>>http://groups.google.com/group/akka-user?hl=en.
>
> >>>>>> >> >> >>> --
> >>>>>> >> >> >>> Erick Fleming
>
> >>>>>> >> >> >>> --
> >>>>>> >> >> >>> You received this message because you are subscribed to the
> >>>>>> >> >> >>> Groups
> >>>>>> >> >> >>> "Akka User List" group.
> >>>>>> >> >> >>> To post to this group, send email to
> >>>>>> akka...@googlegroups.com.
> >>>>>> >> >> >>> To unsubscribe from this group, send email to
> >>>>>> >> >> >>> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>>> .
> >>>>>> >> >> >>> For more options, visit this group at
> >>>>>> >> >> >>>http://groups.google.com/group/akka-user?hl=en.
>
> >>>>>> >> >> >> --
> >>>>>> >> >> >> Viktor Klang
> >>>>>> >> >> >> | "A complex system that works is invariably
> >>>>>> >> >> >> | found to have evolved from a simple system
> >>>>>> >> >> >> | that worked." - John Gall
>
> >>>>>> >> >> >> Akka - the Actor Kernel: Akkasource.org
> >>>>>> >> >> >> Twttr: twitter.com/viktorklang
>
> >>>>>> >> >> >> --
> >>>>>> >> >> >> You received this message because you are subscribed to the
> >>>>>> >> >> >> Groups
> >>>>>> >> >> >> "Akka User List" group.
> >>>>>> >> >> >> To post to this group, send email to
> >>>>>> akka...@googlegroups.com.
> >>>>>> >> >> >> To unsubscribe from this group, send email to
> >>>>>> >> >> >> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@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
> >>>>>> >> >> > Groups
> >>>>>> >> >> > "Akka User List" group.
> >>>>>> >> >> > To post to this group, send email to
> >>>>>> akka...@googlegroups.com.
> >>>>>> >> >> > To unsubscribe from this group, send email to
> >>>>>> >> >> > akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>>> .
> >>>>>> >> >> > For more options, visit this group at
> >>>>>> >> >> >http://groups.google.com/group/akka-user?hl=en.
>
> >>>>>> >> >> --
> >>>>>> >> >> Jonas Bonér
>
> >>>>>> >> >> work: http://jayway.com
> >>>>>> >> >> code: http://akkasource.org
> >>>>>> >> >> blog: http://jonasboner.com
> >>>>>> >> >> twitter: @jboner
>
> >>>>>> >> >> --
> >>>>>> >> >> You received this message because you are subscribed to the
> >>>>>> >> >> Groups
> >>>>>> >> >> "Akka User List" group.
> >>>>>> >> >> To post to this group, send email to akka...@googlegroups.com
> >>>>>> .
> >>>>>> >> >> To unsubscribe from this group, send email to
> >>>>>> >> >> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>>> .
> >>>>>> >> >> For more options, visit this group at
> >>>>>> >> >>http://groups.google.com/group/akka-user?hl=en.
>
> >>>>>> >> > --
> >>>>>> >> > Viktor Klang
> >>>>>> >> > | "A complex system that works is invariably
> >>>>>> >> > | found to have evolved from a simple system
> >>>>>> >> > | that worked." - John Gall
>
> >>>>>> >> > Akka - the Actor Kernel: Akkasource.org
> >>>>>> >> > Twttr: twitter.com/viktorklang
>
> >>>>>> >> > --
> >>>>>> >> > You received this message because you are subscribed to the
> >>>>>> >> > Groups
> >>>>>> >> > "Akka User List" group.
> >>>>>> >> > To post to this group, send email to akka...@googlegroups.com.
> >>>>>> >> > To unsubscribe from this group, send email to
> >>>>>> >> > akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>>> .
> >>>>>> >> > For more options, visit this group at
> >>>>>> >> >http://groups.google.com/group/akka-user?hl=en.
>
> >>>>>> >> --
> >>>>>> >> Jonas Bonér
>
> >>>>>> >> work: http://jayway.com
> >>>>>> >> code: http://akkasource.org
> >>>>>> >> blog: http://jonasboner.com
> >>>>>> >> twitter: @jboner
>
> >>>>>> >> --
> >>>>>> >> You received this message because you are subscribed to the Google
> >>>>>> Groups
> >>>>>> >> "Akka User List" group.
> >>>>>> >> To post to this group, send email to akka...@googlegroups.com.
> >>>>>> >> To unsubscribe from this group, send email to
> >>>>>> >> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>>> .
> >>>>>> >> For more options, visit this group at
> >>>>>> >>http://groups.google.com/group/akka-user?hl=en.
>
> >>>>>> > --
> >>>>>> > Viktor Klang
> >>>>>> > | "A complex system that works is invariably
> >>>>>> > | found to have evolved from a simple system
> >>>>>> > | that worked." - John Gall
>
> >>>>>> > Akka - the Actor Kernel: Akkasource.org
> >>>>>> > Twttr: twitter.com/viktorklang
> >>>>>> > --
> >>>>>> > You received this message because you are subscribed to the Google
> >>>>>> Groups
> >>>>>> > "Akka User List" group.
> >>>>>> > To post to this group, send email to akka...@googlegroups.com.
> >>>>>> > To unsubscribe from this group, send email to
> >>>>>> > akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>>> .
> >>>>>> > For more options, visit this group at
> >>>>>> >http://groups.google.com/group/akka-user?hl=en.
>
> >>>>>> > --
> >>>>>> > Martin Krasser
>
> >>>>>> > Blog:http://krasserm.blogspot.com
> >>>>>> > Twitter:http://twitter.com/mrt1nz
>
> >>>>>> > --
> >>>>>> > You received this message because you are subscribed to the Google
> >>>>>> Groups
> >>>>>> > "Akka User List" group.
> >>>>>> > To post to this group, send email to akka...@googlegroups.com.
> >>>>>> > To unsubscribe from this group, send email to
> >>>>>> > akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>>> .
> >>>>>> > For more options, visit this group at
> >>>>>> >http://groups.google.com/group/akka-user?hl=en.
>
> >>>>>> --
> >>>>>> Jonas Bonér
>
> >>>>>> work: http://jayway.com
> >>>>>> code: http://akkasource.org
> >>>>>> blog: http://jonasboner.com
> >>>>>> twitter: @jboner
>
> >>>>>> --
> >>>>>> You received this message because you are subscribed to the Google
> >>>>>> Groups "Akka User List" group.
> >>>>>> To post to this group, send email to akka...@googlegroups.com.
> >>>>>> To unsubscribe from this group, send email to
> >>>>>> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>>> .
> >>>>>> For more options, visit this group at
> >>>>>>http://groups.google.com/group/akka-user?hl=en.
>
> >>>>> --
> >>>>> Viktor Klang
> >>>>> | "A complex system that works is invariably
> >>>>> | found to have evolved from a simple system
> >>>>> | that worked." - John Gall
>
> >>>>> Akka - the Actor Kernel: Akkasource.org
> >>>>> Twttr: twitter.com/viktorklang
>
> >>>>> --
> >>>>> You received this message because you are subscribed to the Google
> >>>>> Groups "Akka User List" group.
> >>>>> To post to this group, send email to akka...@googlegroups.com.
> >>>>> To unsubscribe from this group, send email to
> >>>>> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>>> .
> >>>>> For more options, visit this group at
> >>>>>http://groups.google.com/group/akka-user?hl=en.
>
> >>>> --
> >>>> Jonas Bonér
>
> >>>> work: http://jayway.com
> >>>> code: http://akkasource.org
> >>>> blog: http://jonasboner.com
> >>>> twitter: @jboner
>
> >>>> --
> >>>> You received this message because you are subscribed to the Google
> >>>> Groups "Akka User List" group.
> >>>> To post to this group, send email to akka...@googlegroups.com.
> >>>> To unsubscribe from this group, send email to
> >>>> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>>> .
> >>>> For more options, visit this group at
> >>>>http://groups.google.com/group/akka-user?hl=en.
>
> >>> --
> >>> Viktor Klang
> >>> | "A complex system that works is invariably
> >>> | found to have evolved from a simple system
> >>> | that worked." - John Gall
>
> >>> Akka - the Actor Kernel: Akkasource.org
> >>> Twttr: twitter.com/viktorklang
>
> >>> --
> >>> You received this message because you are subscribed to the Google Groups
> >>> "Akka User List" group.
> >>> To post to this group, send email to akka...@googlegroups.com.
> >>> To unsubscribe from this group, send email to
> >>> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >>> .
> >>> For more options, visit this group at
> >>>http://groups.google.com/group/akka-user?hl=en.
>
> >> --
> >> Jonas Bonér
>
> >> work: http://jayway.com
> >> code: http://akkasource.org
> >> blog: http://jonasboner.com
> >> twitter: @jboner
>
> >> --
> >> You received this message because you are subscribed to the Google Groups
> >> "Akka User List" group.
> >> To post to this group, send email to akka...@googlegroups.com.
> >> To unsubscribe from this group, send email to
> >> akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> >> .
> >> For more options, visit this group at
> >>http://groups.google.com/group/akka-user?hl=en.
>
> > --
> > Viktor Klang
> > | "A complex system that works is invariably
> > | found to have evolved from a simple system
> > | that worked." - John Gall
>
> > Akka - the Actor Kernel: Akkasource.org
> > Twttr: twitter.com/viktorklang
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Akka User List" group.
> > To post to this group, send email to akka...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > akka-user+...@googlegroups.com<akka-user%2Bunsubscribe@googlegroups .com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/akka-user?hl=en.
>
> --
> Jonas Bonér
>
> work: http://jayway.com
> code: http://akkasource.org
> blog: http://jonasboner.com
> twitter: @jboner
--
You received this message because you are subscribed to the Google Groups "Akka User List" group.
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.