Re: [equinox-dev] Parallel bundle activation?

2019-04-11 Thread Lars Vogel
o run > them in parallel. You are better off investigating why you must have long > running BundleActivators. > > > > > > Tom > > > > > > > > > > > > > > > ----- Original message - > > > From: Neil Bartlett > > > Sent by: equinox-dev-bou

Re: [equinox-dev] Parallel bundle activation?

2018-10-26 Thread Lars Vogel
> > Tom > > > > > > > > > > - Original message - > > From: Neil Bartlett > > Sent by: equinox-dev-boun...@eclipse.org > > To: Equinox development mailing list > > Cc: > > Subject: Re: [equinox-dev] Parallel bundle activatio

Re: [equinox-dev] Parallel bundle activation?

2018-10-26 Thread Lars Vogel
ent mailing list > Cc: > Subject: Re: [equinox-dev] Parallel bundle activation? > Date: Fri, Oct 26, 2018 7:20 AM > > Hi Lars, > > Activation of a bundle happens when the launcher calls Bundle.start(). You > can certainly write a launcher that calls start() on many

Re: [equinox-dev] Parallel bundle activation?

2018-10-26 Thread Thomas Watson
BundleActivators. Tom      - Original message -From: Neil Bartlett Sent by: equinox-dev-boun...@eclipse.orgTo: Equinox development mailing list Cc:Subject: Re: [equinox-dev] Parallel bundle activation?Date: Fri, Oct 26, 2018 7:20 AM  Hi Lars,   Activation of a bundle happens when the launcher

Re: [equinox-dev] Parallel bundle activation?

2018-10-26 Thread Gunnar Wagenknecht
Hi Lars, Here is a good thread about the topic: https://www.eclipse.org/forums/index.php/t/206827/ TLDR: single thread only -Gunnar -- Gunnar Wagenknecht gun...@wagenknecht.org, http://guw.io/ > On Oct 26, 2018, at 14:09, Lars Vogel

[equinox-dev] Parallel bundle activation?

2018-10-26 Thread Lars Vogel
Hi, can Equinox perform bundle activation during startup in parallel? For example, lets assume I have two bundles A and B which have no dependency to each other. Both should be activated during startup. Can this be done in parallel? Or is the current code single-threaded? Best regards, Lars --