Package jsynoptic.data

Examples of jsynoptic.data.DataSourceCollectionAnimator


                dsc = new AsciiFileDataSourceCollection(f, optionPanel.getChartsetName(), f.getName().endsWith(".csv"));
            } else {
                dsc = new AsciiFileDataSourceCollection(f, f.getName().endsWith(".csv"));
            }
            if ((optionPanel != null) && optionPanel.isDynamic()) {
                DataSourceCollectionAnimator dsca = new DataSourceCollectionAnimator(dsc);
                dsca.bufferize(new DelayedBuffer(optionPanel.getBufferSize()));
                dsca.setPeriod(optionPanel.getDynamicRefreshValue());
                DataSourcePool.global.addDataSourceCollection(dsca);
            } else {
                dsc.bufferize(new ResizeableBuffer(resources.getIntValue("maxBufferSize")));
                DataSourcePool.global.addDataSourceCollection(dsc);
            }
View Full Code Here

TOP

Related Classes of jsynoptic.data.DataSourceCollectionAnimator

Copyright © 2018 www.massapicom. 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.