Package org.drools.examples.broker

Source Code of org.drools.examples.broker.BrokerExample

/*
* Copyright 2010 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.drools.examples.broker;

import java.io.FileNotFoundException;
import java.io.InputStreamReader;
import java.util.Locale;

import org.drools.examples.broker.events.EventFeeder;
import org.drools.examples.broker.events.StockTickPersister;
import org.drools.examples.broker.model.CompanyRegistry;
import org.drools.examples.broker.ui.BrokerWindow;
import org.drools.core.time.TimerService;
import org.drools.core.time.impl.JDKTimerService;

/**
* This is the main class for the broker example.
*/
public class BrokerExample {

    public static void main(String[] args) {
        new BrokerExample().init(true);
    }

    public BrokerExample() {
    }

    public void init(boolean exitOnClose) {
        // set up and show main window
        Locale.setDefault( Locale.US );
        CompanyRegistry registry = new CompanyRegistry();
        BrokerWindow window = new BrokerWindow( registry.getCompanies(), exitOnClose );
        window.show();
        //Thread.sleep( 10000 );
        Broker broker = new Broker( window, registry );
       
        TimerService clock = new JDKTimerService(1);
        StockTickPersister source = new StockTickPersister();
        try {
            source.openForRead( new InputStreamReader( BrokerExample.class.getResourceAsStream("/org/drools/examples/broker/data/stocktickstream.dat") ),
                                System.currentTimeMillis() );
        } catch (FileNotFoundException e) {
            throw new IllegalArgumentException("Could not read data file.", e);
        }

        EventFeeder feeder = new EventFeeder(clock, source, broker );
        feeder.feed();
       
    }
}
TOP

Related Classes of org.drools.examples.broker.BrokerExample

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.