Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
starting ReportEngine Independantly
kssraju
<p>We started the birt engine in a java program as follows</p><p> </p><p>EngineConfig config = new EngineConfig();
//- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
engine = new ReportEngine(config);</p><p> </p><p> </p><p>we process no of reports, so is it possible to start the engine separately and all remaing process will use the same engine object...</p><p> </p><p>we need this because the start shudown process is heavy opeartion</p><p> </p><p>we also want to know can we know the status of ReportEngine that is it already running or not...</p>
Find more posts tagged with
Comments
mwilliams
<p>You should create a singleton to separate the engine/platform creation from the running of tasks if this is an app that will stay up and running. Definitely starting and stopping the engine for each report would be a heavy process.</p>