├── .gitignore ├── ConsistentRegions ├── Makefile ├── NonBlockingCheckpoint │ ├── Makefile │ ├── MyToolkit │ │ ├── CRSource │ │ │ ├── CRSource.xml │ │ │ ├── CRSource_cpp.cgt │ │ │ └── CRSource_h.cgt │ │ ├── NBOp │ │ │ ├── NBOp.xml │ │ │ ├── NBOp_cpp.cgt │ │ │ └── NBOp_h.cgt │ │ └── impl │ │ │ └── include │ │ │ └── NBUnorderedMap.h │ ├── README.md │ ├── catalog.json │ ├── data │ │ ├── delay.50K │ │ └── input.50K │ └── test │ │ └── test.splmm ├── OddEven │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── Main-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Main.splmm │ ├── Makefile │ ├── README │ ├── catalog.json │ ├── data │ │ └── .gitignore │ └── info.xml └── WordCount │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.jdt.apt.core.prefs │ ├── org.eclipse.jdt.core.prefs │ └── project.sploptions │ ├── Main.spl │ ├── Makefile │ ├── README │ ├── catalog.json │ ├── data │ └── loremIpsum.txt │ ├── info.xml │ └── result.dat.exp ├── ConsoleAndMonitoring ├── IndexAnalyzer │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── project.sploptions │ │ ├── sample.IndexAnalyzer-Distributed.splbuild │ │ ├── sample.IndexCalculator-Distributed.splbuild │ │ └── sample.TradeSource-Distributed.splbuild │ ├── Makefile │ ├── README.MD │ ├── catalog.json │ ├── data │ │ └── TradesAndQuotes.csv.gz │ ├── info.xml │ └── sample │ │ ├── IndexAnalyzer.spl │ │ ├── IndexCalculator.spl │ │ ├── TradeSource.spl │ │ └── VwapTypes.spl └── Makefile ├── Databases ├── DbLoader │ └── README.md ├── JDBCForBluemix │ └── README.md └── TeradataODBC │ └── README.md ├── Examples-for-beginners ├── 001_hello_world_in_spl │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── HelloWorld-Standalone.splbuild │ │ ├── demo.HelloWorld-BuildConfig.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── demo │ │ ├── .namespace │ │ └── HelloWorld.spl │ └── info.xml ├── 002_source_sink_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── project.sploptions │ │ ├── sample.source_sink_at_work-BuildConfig.splbuild │ │ └── sample.source_sink_at_work-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ └── Employee.dat │ ├── info.xml │ └── sample │ │ └── source_sink_at_work.spl ├── 003_sink_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── project.sploptions │ │ └── sample.sink_at_work-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── sample │ │ └── sink_at_work.spl ├── 004_delay_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── project.sploptions │ │ └── sample.delay_at_work-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── sample │ │ └── delay_at_work.spl ├── 005_throttle_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── project.sploptions │ │ └── sample.throttle_at_work-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── sample │ │ └── throttle_at_work.spl ├── 006_barrier_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── project.sploptions │ │ └── sample.barrier_at_work-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ └── bank_tasks.dat │ ├── info.xml │ └── sample │ │ └── barrier_at_work.spl ├── 007_split_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── project.sploptions │ │ ├── sample.split_at_work-BuildConfig.splbuild │ │ ├── sample.split_at_work-Standalone.splbuild │ │ └── sample.split_at_work.splmm.splmmoptions │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ ├── mapping.txt │ │ └── stock_report.dat │ ├── info.xml │ └── sample │ │ └── split_at_work.splmm ├── 008_get_submission_time_value │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── Main-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Main.spl │ ├── Makefile │ ├── README.md │ ├── catalog.json │ └── info.xml ├── 009_custom_operator_using_get_submission_time_value │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── Main-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Main.spl │ ├── Makefile │ ├── README.md │ ├── catalog.json │ └── info.xml ├── 010_get_compile_time_value │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── Main-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Main.spl │ ├── Makefile │ ├── README.md │ ├── catalog.json │ └── info.xml ├── 011_compiler_intrinsic_functions │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── Main-Standalone.splbuild │ ├── Main.spl │ ├── Makefile │ ├── README.md │ ├── catalog.json │ └── info.xml ├── 012_filter_functor_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 013_punctor_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 014_sort_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ └── EmployeeRecords.txt │ ├── info.xml │ └── my │ │ └── sample │ │ └── Main.spl ├── 015_join_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ ├── DepartmentRecords.txt │ │ ├── EmployeeRecords.txt │ │ ├── inventory.txt │ │ └── orders.txt │ ├── info.xml │ └── my │ │ └── sample │ │ └── Main.spl ├── 016_aggregate_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ └── Population.txt │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 017_filesource_filesink_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ ├── DepartmentRecords.txt │ │ ├── EmployeeRecords.txt │ │ └── Population.txt │ ├── info.xml │ ├── my.sample │ │ └── Main.spl │ └── test1 │ │ ├── DepartmentRecords.txt │ │ ├── EmployeeRecords.txt │ │ └── Population.txt ├── 018_directory_scan_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ ├── DepartmentRecords.txt │ │ ├── EmployeeRecords.txt │ │ └── Population.txt │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 019_import_export_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── my.sample.Main-Distributed.splbuild │ │ └── my.sample2.Main-Distributed1.splbuild │ ├── .tempLaunch │ │ ├── Distributed.my.sample.Main.adl │ │ └── Distributed1.my.sample2.Main.adl │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ ├── DepartmentRecords.txt │ │ └── EmployeeRecords.txt │ ├── info.xml │ ├── my.sample │ │ └── Main.spl │ └── my.sample2 │ │ └── Main.spl ├── 020_metrics_sink_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Distributed.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 021_pair_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 022_deduplicate_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 023_union_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ ├── DepartmentRecords.txt │ │ ├── EmployeeRecords.txt │ │ ├── inventory.txt │ │ └── orders.txt │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 024_threaded_split_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 025_dynamic_filter_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ ├── AddMatchValues.txt │ │ └── RemoveMatchValues.txt │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 026_gate_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 028_multiple_composites_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample1.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ └── StockOrders.txt │ ├── info.xml │ ├── my.sample1 │ │ └── Main.spl │ ├── my.sample2 │ │ └── StockMatch.spl │ └── my.sample3 │ │ └── StockOrderCommission.spl ├── 029_spl_functions_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ └── Calculator_Input.txt │ ├── info.xml │ └── my.sample │ │ ├── Calculator.spl │ │ └── Main.spl ├── 030_spl_config_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample3.Main-Distributed.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ └── AirlinesSplitter.txt │ ├── info.xml │ └── my.sample3 │ │ └── Main.spl ├── 031_spl_mixed_mode_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ ├── mapping.txt │ │ └── stock_report.dat │ ├── info.xml │ └── my.sample │ │ └── Main.splmm ├── 032_native_function_at_work │ ├── 032_native_function_at_work │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── my.sample.Main-Standalone.splbuild │ │ ├── Makefile │ │ ├── data │ │ │ └── product_details.txt │ │ ├── functions.inside.header_file │ │ │ └── native.function │ │ │ │ └── function.xml │ │ ├── functions.inside.shared_lib │ │ │ └── native.function │ │ │ │ └── function.xml │ │ ├── impl │ │ │ ├── bin │ │ │ │ └── archLevel │ │ │ ├── include │ │ │ │ ├── Functions.h │ │ │ │ └── LibFunctions.h │ │ │ └── src │ │ │ │ └── LibFunctions.cpp │ │ ├── info.xml │ │ └── my.sample │ │ │ └── Main.spl │ ├── Makefile │ ├── NativeFunctionLib │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.cdt.core.prefs │ │ ├── LibFunctions.cpp │ │ ├── LibFunctions.h │ │ └── mk │ ├── README.md │ └── catalog.json ├── 033_java_primitive_operator_at_work │ ├── 033_java_primitive_operator_at_work │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── my.sample.Main-Standalone.splbuild │ │ ├── com.ibm.streams.rss.reader │ │ │ └── RSSReader │ │ │ │ └── RSSReader.xml │ │ ├── data │ │ │ └── rss_feed_sources.txt │ │ ├── impl │ │ │ └── java │ │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── ibm │ │ │ │ └── streams │ │ │ │ └── rss │ │ │ │ └── reader │ │ │ │ └── RSSReader.java │ │ ├── info.xml │ │ └── my.sample │ │ │ └── Main.spl │ ├── Makefile │ ├── README.md │ ├── RSS_Reader_Primitive │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ └── src │ │ │ └── com │ │ │ └── ibm │ │ │ └── streams │ │ │ └── rss │ │ │ └── reader │ │ │ └── RSSReader.java │ └── catalog.json ├── 034_odbc_adapters_for_db2_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── my.sample.Main-Standalone.splbuild │ │ └── org.eclipse.core.runtime.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── create_034_db2_tables.sql │ ├── data │ │ └── ShipmentStatus.txt │ ├── etc │ │ └── connections.xml │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 035_c++_primitive_operator_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── directory.lister │ │ └── DirectoryLister │ │ │ ├── DirectoryLister.xml │ │ │ ├── DirectoryLister_cpp.cgt │ │ │ └── DirectoryLister_h.cgt │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 036_shared_lib_primitive_operator_at_work │ ├── 036_shared_lib_primitive_operator_at_work │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── my.sample.Main-Standalone.splbuild │ │ ├── data │ │ │ └── ns-lookup-nodes.txt │ │ ├── impl │ │ │ ├── bin │ │ │ │ └── archLevel │ │ │ ├── include │ │ │ │ └── NameServerLookup.h │ │ │ └── src │ │ │ │ └── NameServerLookup.cpp │ │ ├── info.xml │ │ ├── my.sample │ │ │ └── Main.spl │ │ └── ns.lookup │ │ │ └── NSLookup │ │ │ ├── NSLookup.xml │ │ │ ├── NSLookup_cpp.cgt │ │ │ ├── NSLookup_cpp.pm │ │ │ ├── NSLookup_h.cgt │ │ │ └── NSLookup_h.pm │ ├── Makefile │ ├── PrimitiveOperatorLib │ │ ├── .cproject │ │ ├── .project │ │ ├── NameServerLookup.cpp │ │ ├── NameServerLookup.h │ │ └── mk │ ├── README.md │ └── catalog.json ├── 037_odbc_adapters_for_solid_db_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── create_037_solid_db_tables.sql │ ├── data │ │ └── ShipmentStatus.txt │ ├── etc │ │ └── connections.xml │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── 038_spl_built_in_functions_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── test.scratch.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── test.scratch │ │ └── Main.spl ├── 039_application_set_at_work │ ├── .ApplicationSet.combined │ ├── .project │ ├── ApplicationSet.properties │ ├── Makefile │ ├── README.md │ └── catalog.json ├── 040_ingest_data_generation_in_spl │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── impl │ │ └── include │ │ │ └── Functions.h │ ├── info.xml │ ├── my.sample │ │ └── Main.spl │ └── test.datagen │ │ └── native.function │ │ └── function.xml ├── 041_real_time_streams_merger │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── real.time.merger.real_time_streams_merger-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ ├── source1.txt │ │ ├── source2.txt │ │ └── source3.txt │ ├── impl │ │ └── include │ │ │ └── PriorityQueue.h │ ├── info.xml │ └── real.time.merger │ │ ├── .namespace │ │ ├── OrderedMerger │ │ ├── OrderedMerger.xml │ │ ├── OrderedMergerCommon.pm │ │ ├── OrderedMerger_cpp.cgt │ │ └── OrderedMerger_h.cgt │ │ └── real_time_streams_merger.spl ├── 042_dynamic_import_export_api_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── dynamic.importing.exporting.dynamic_export-Distributed.splbuild │ │ └── dynamic.importing.exporting.dynamic_import-Distributed.splbuild │ ├── .tempLaunch │ │ ├── Distributed.dynamic.importing.exporting.dynamic_export.adl │ │ └── Distributed.dynamic.importing.exporting.dynamic_import.adl │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── dynamic.importing.exporting │ │ ├── .namespace │ │ ├── dynamic_export.spl │ │ └── dynamic_import.spl │ └── info.xml ├── 043_import_export_filter_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── importing.exporting.filter.export_with_filter-Distributed.splbuild │ │ └── importing.exporting.filter.import_with_filter-Distributed.splbuild │ ├── .tempLaunch │ │ ├── Distributed.importing.exporting.filter.export_with_filter.adl │ │ └── Distributed.importing.exporting.filter.import_with_filter.adl │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── importing.exporting.filter │ │ ├── .namespace │ │ ├── export_with_filter.spl │ │ └── import_with_filter.spl │ └── info.xml ├── 044_streams_checkpointing_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── checkpointing.example.streams_checkpointing_at_work-Distributed.splbuild │ ├── .tempLaunch │ │ └── Distributed.checkpointing.example.streams_checkpointing_at_work.adl │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── checkpointing.example │ │ ├── .namespace │ │ └── streams_checkpointing_at_work.spl │ ├── data │ │ ├── AggOutput.csv │ │ └── ckpt │ │ │ └── pe1.ckpt │ │ │ └── op0.ckpt │ └── info.xml ├── 045_file_source_using_spl_custom_operator │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── my.file.source.file_source_using_spl_custom_operator-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ └── stock_report.dat │ ├── info.xml │ └── my.file.source │ │ ├── .namespace │ │ └── file_source_using_spl_custom_operator.spl ├── 046_launching_external_apps_in_spl │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── launch.external.apps.launching_external_apps-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ └── test-script.sh │ ├── impl │ │ └── include │ │ │ └── Functions.h │ ├── info.xml │ └── launch.external.apps │ │ ├── .namespace │ │ ├── launching_external_apps.spl │ │ └── native.function │ │ └── function.xml ├── 047_streams_host_tags_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── host.tags.streams_host_tags_at_work-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── host.tags │ │ ├── .namespace │ │ ├── streams_host_tags_at_work.spl │ │ └── tips-on-using-streams-host-tags.txt │ └── info.xml ├── 048_source_operator_with_control_port │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── source_op_with_control_port.source_operator_with_control_port-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── source_op_with_control_port │ │ ├── .namespace │ │ ├── MyOp │ │ ├── MyOp.xml │ │ ├── MyOp_cpp.cgt │ │ └── MyOp_h.cgt │ │ └── source_operator_with_control_port.spl ├── 049_json_to_tuple_to_json_using_java │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── project.sploptions │ │ └── sample.Main-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── bin │ │ └── run.sh │ ├── catalog.json │ ├── com.ibm.streamsx.json │ │ ├── JSONToTuple │ │ │ └── .gitkeep │ │ └── TupleToJSON │ │ │ └── .gitkeep │ ├── data │ │ ├── historical_data_tuple_input1.csv │ │ ├── json_input1.dat │ │ ├── json_input2.dat │ │ └── json_input3.dat │ ├── impl │ │ └── lib │ │ │ └── com.ibm.streamsx.json.jar │ ├── info.xml │ └── sample │ │ └── Main.spl ├── 050_recursive_dir_scan │ ├── 050_recursive_dir_scan │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── recursive.dir.scan.recursive_dir_scan-Standalone.splbuild │ │ ├── 01_simulate_data_feeds.sh │ │ ├── 02_simulate_data_feeds.sh │ │ ├── Makefile │ │ ├── impl │ │ │ ├── bin │ │ │ │ └── archLevel │ │ │ └── include │ │ │ │ ├── RecursiveDirScan.h │ │ │ │ └── RecursiveDirScanWrappers.h │ │ ├── info.xml │ │ └── recursive.dir.scan │ │ │ ├── .namespace │ │ │ ├── native.function │ │ │ └── function.xml │ │ │ └── recursive_dir_scan.spl │ ├── Makefile │ ├── README.md │ ├── RecursiveDirScanLib │ │ ├── .cproject │ │ ├── .project │ │ ├── RecursiveDirScan.cpp │ │ ├── RecursiveDirScan.h │ │ ├── RecursiveDirScanWrappers.h │ │ └── mk │ └── catalog.json ├── 051_native_functions_with_collection_types │ ├── 051_native_functions_with_collection_types │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── com.ibm.nf.test.native_functions_with_collection_types-Standalone.splbuild │ │ ├── Makefile │ │ ├── README.txt │ │ ├── com.ibm.nf.test │ │ │ ├── .namespace │ │ │ ├── native.function │ │ │ │ └── function.xml │ │ │ └── native_functions_with_collection_types.spl │ │ ├── impl │ │ │ ├── bin │ │ │ │ └── archLevel │ │ │ └── include │ │ │ │ ├── NativeFunctionsWithCollectionTypes.h │ │ │ │ └── NativeFunctionsWithCollectionTypesWrappers.h │ │ ├── info.xml │ │ ├── mk │ │ └── run-standalone.sh │ ├── Makefile │ ├── NativeFunctionsWithCollectionTypesLib │ │ ├── .cproject │ │ ├── .project │ │ ├── NativeFunctionsWithCollectionTypes.cpp │ │ ├── NativeFunctionsWithCollectionTypes.h │ │ ├── NativeFunctionsWithCollectionTypesWrappers.h │ │ └── mk │ ├── README.md │ └── catalog.json ├── 053_java_primitive_operator_with_complex_output_tuple_types │ ├── 053_java_primitive_operator_with_complex_output_tuple_types │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── com.acme.test.java_primitive_operator_with_complex_output_tuple_types-Standalone.splbuild │ │ ├── com.acme.complex.otuple.submission │ │ │ ├── .namespace │ │ │ └── JavaPrimitiveWithComplexOutputTupleSubmission │ │ │ │ └── JavaPrimitiveWithComplexOutputTupleSubmission.xml │ │ ├── com.acme.test │ │ │ ├── .namespace │ │ │ └── java_primitive_operator_with_complex_output_tuple_types.spl │ │ └── info.xml │ ├── Java_Complex_Tuple_Type_Submission │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ └── src │ │ │ └── com │ │ │ └── acme │ │ │ └── complex │ │ │ └── tuple │ │ │ └── type │ │ │ └── submission │ │ │ └── ComplexTupleTypeSubmission.java │ ├── Makefile │ ├── README.md │ └── catalog.json ├── 054_serialize_deserialize_tuples │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── com.acme.test.serialize_deserialize_tuples-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ ├── native.function │ │ │ └── function.xml │ │ └── serialize_deserialize_tuples.spl │ ├── data │ │ └── PersonData.txt │ ├── impl │ │ └── include │ │ │ └── Functions.h │ └── info.xml ├── 055_json_to_tuple_to_json_using_c++ │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── com.acme.test.json_to_tuple_to_json_using_cpp-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ ├── json_to_tuple_to_json_using_cpp.spl │ │ └── native.function │ │ │ └── function.xml │ ├── data │ │ └── PersonData.txt │ ├── impl │ │ └── include │ │ │ └── Functions.h │ └── info.xml ├── 057_reading_nested_tuple_data_via_file_source │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.Test1-Standalone.splbuild │ │ └── org.eclipse.core.runtime.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── Test1.spl │ ├── data │ │ └── prepos_rps_in.csv │ └── info.xml ├── 059_dynamic_scaleout_of_streams_application │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.ibm.streams.pricing.Pricer.splmm.splmmoptions │ │ ├── com.ibm.streams.pricing.test.DynamicScaleOut.splmm.splmmoptions │ │ ├── org.eclipse.core.runtime.prefs │ │ └── project.sploptions │ ├── Makefile │ ├── README.md │ ├── build_dynamic_scaleout_app.sh │ ├── catalog.json │ ├── com.ibm.streams.pricing.test │ │ ├── .namespace │ │ └── DynamicScaleOut.splmm │ ├── com.ibm.streams.pricing │ │ ├── .namespace │ │ ├── DummyPricer │ │ │ ├── DummyPricer.xml │ │ │ ├── DummyPricer_cpp.cgt │ │ │ └── DummyPricer_h.cgt │ │ └── Pricer.splmm │ ├── demo_dynamic_scaleout_app.sh │ ├── info.xml │ ├── mk │ ├── readme.txt │ ├── start_dynamic_scaleout_app.sh │ ├── start_new_pricers.sh │ ├── stop_active_pricers.sh │ ├── stop_dynamic_scaleout_app.sh │ └── stop_streams_instance.sh ├── 060_simple_pe_failover_technique_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.failover.test.simple_pe_failover_technique_at_work-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.failover.test │ │ ├── .namespace │ │ └── simple_pe_failover_technique_at_work.splmm │ └── info.xml ├── 063_on_the_fly_tuple_creation_and_encoding_decoding_in_java_primitive_operators │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── application.Main-Standalone.splbuild │ │ └── org.eclipse.core.runtime.prefs │ ├── Makefile │ ├── README.md │ ├── application │ │ ├── .namespace │ │ ├── Main.spl │ │ └── MyJavaEncodeDecode │ │ │ └── MyJavaEncodeDecode.xml │ ├── catalog.json │ ├── impl │ │ └── java │ │ │ └── src │ │ │ └── application │ │ │ └── MyJavaEncodeDecode.java │ └── info.xml ├── 064_using_spl_composite_params │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.CompositeParams-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── CompositeParams.spl │ └── info.xml ├── 065_using_multiple_threads_in_java_operator │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.JavaOpSubmitFromMultipleThreads-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ ├── JavaOpSubmitFromMultipleThreads.spl │ │ └── MyJavaOp │ │ │ └── MyJavaOp.xml │ ├── impl │ │ └── java │ │ │ └── src │ │ │ └── com │ │ │ └── acme │ │ │ └── test │ │ │ ├── MyJavaOp$StreamsModel.java │ │ │ └── MyJavaOp.java │ └── info.xml ├── 066_load_balancing_using_gate │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.LoadBalancingUsingGate-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── LoadBalancingUsingGate.spl │ └── info.xml ├── 067_simple_java_source_operator │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.Temp1-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ ├── MyOp │ │ │ └── MyOp.xml │ │ └── Temp1.spl │ ├── impl │ │ ├── bin │ │ │ └── archLevel │ │ └── java │ │ │ └── src │ │ │ └── com │ │ │ └── acme │ │ │ └── test │ │ │ └── MyOp.java │ └── info.xml ├── 068_tuple_introspection_inside_java_operator │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.Temp2-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ ├── MyJavaOp │ │ │ └── MyJavaOp.xml │ │ └── Temp2.spl │ ├── impl │ │ └── java │ │ │ └── src │ │ │ └── com │ │ │ └── acme │ │ │ └── test │ │ │ ├── MyJavaOp$StreamsModel.java │ │ │ └── MyJavaOp.java │ └── info.xml ├── 069_changing_map_value_during_iteration │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ChangeMapValue-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── ChangeCollectionValue.spl │ └── info.xml ├── 070_convert_block_data_into_tuples_using_parse │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ConvertBlockDataWithParse-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── ConvertBlockDataWithParse.spl │ ├── data │ │ └── test1.txt │ └── info.xml ├── 071_java_native_functions │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.JavaNativeFunctions-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.myutilx │ │ └── native.function │ │ │ ├── SPL_JNIFunctions_com_acme_myutilx.h │ │ │ └── javaFunction.xml │ ├── com.acme.myutily │ │ └── native.function │ │ │ ├── SPL_JNIFunctions_com_acme_myutily.h │ │ │ └── javaFunction.xml │ ├── com.acme.myutilz │ │ └── native.function │ │ │ ├── SPL_JNIFunctions_com_acme_myutilz.h │ │ │ └── javaFunction.xml │ ├── com.acme.test │ │ ├── .namespace │ │ └── JavaNativeFunctions.spl │ ├── impl │ │ └── java │ │ │ └── src │ │ │ ├── MyJavaFunctions$StreamsModel.java │ │ │ └── MyJavaFunctions.java │ └── info.xml ├── 072_using_streams_rest_apis │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UsingStreamsRestApis-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.myrestfunctions │ │ └── native.function │ │ │ ├── SPL_JNIFunctions_com_acme_myrestfunctions.h │ │ │ └── javaFunction.xml │ ├── com.acme.test │ │ ├── .namespace │ │ └── UsingStreamsRestApis.spl │ ├── impl │ │ └── java │ │ │ └── src │ │ │ └── com │ │ │ └── acme │ │ │ └── test │ │ │ └── rest │ │ │ ├── MyJavaRestFunctions$StreamsModel.java │ │ │ └── MyJavaRestFunctions.java │ └── info.xml ├── 073_java_operator_fusion │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.JavaFusion-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ ├── FirstJavaOp │ │ │ └── FirstJavaOp.xml │ │ ├── JavaFusion.spl │ │ └── SecondJavaOp │ │ │ └── SecondJavaOp.xml │ ├── impl │ │ └── java │ │ │ └── src │ │ │ └── com │ │ │ └── acme │ │ │ └── test │ │ │ ├── FirstJavaOp$StreamsModel.java │ │ │ ├── FirstJavaOp.java │ │ │ ├── SecondJavaOp$StreamsModel.java │ │ │ └── SecondJavaOp.java │ └── info.xml ├── 074_user_defined_parallelism_01 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UDP1-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── UDP1.spl │ └── info.xml ├── 075_user_defined_parallelism_02 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UDP2-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── UDP2.spl │ ├── data │ │ └── Test1.csv │ └── info.xml ├── 076_user_defined_parallelism_03 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UDP3-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── UDP3.spl │ └── info.xml ├── 077_user_defined_parallelism_04 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UDP4-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── UDP4.spl │ └── info.xml ├── 078_user_defined_parallelism_05 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UDP5-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── UDP5.spl │ └── info.xml ├── 079_user_defined_parallelism_06 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UDP6-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── UDP6.spl │ └── info.xml ├── 080_user_defined_parallelism_07 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UDP7-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── UDP7.spl │ └── info.xml ├── 081_user_defined_parallelism_08 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UDP8-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── UDP8.spl │ └── info.xml ├── 082_user_defined_parallelism_09 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UDP9-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── UDP9.spl │ └── info.xml ├── 083_user_defined_parallelism_10 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UDP10-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── UDP10.spl │ └── info.xml ├── 084_user_defined_parallelism_11 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UDP11-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── UDP11.spl │ └── info.xml ├── 085_user_defined_parallelism_12 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.UDP12-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── UDP12.spl │ └── info.xml ├── 086_jms_source_sink_using_activemq │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.JMSSourceSink-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── JMSSourceSink.spl │ ├── etc │ │ └── connections.xml │ └── info.xml ├── 087_email_alerts_via_java_native_function │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.EmailAlerts-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test.email │ │ └── native.function │ │ │ ├── SPL_JNIFunctions_com_acme_test_email.h │ │ │ └── javaFunction.xml │ ├── com.acme.test │ │ ├── .namespace │ │ └── EmailAlerts.spl │ ├── impl │ │ └── java │ │ │ └── src │ │ │ └── com │ │ │ └── acme │ │ │ └── test │ │ │ └── email │ │ │ └── sender │ │ │ ├── EmailSender$StreamsModel.java │ │ │ └── EmailSender.java │ └── info.xml ├── 088_java_operator_params_and_multiple_input_output_ports │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.JavaOperatorParams-Standalone.splbuild │ │ ├── com.acme.test.Java_Operator_Params-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ ├── JavaOperatorParams.spl │ │ └── MyJavaOp │ │ │ └── MyJavaOp.xml │ ├── impl │ │ └── java │ │ │ └── src │ │ │ └── com │ │ │ └── acme │ │ │ └── test │ │ │ ├── MyJavaOp$StreamsModel.java │ │ │ └── MyJavaOp.java │ └── info.xml ├── 089_integrating_streams_apps_with_web_apps │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.WebCalculator-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── WebCalculator.spl │ └── info.xml ├── 090_consistent_region_spl_01 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ConsistentRegion1-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── ConsistentRegion1.spl │ ├── data │ │ └── loremIpsum.txt │ └── info.xml ├── 091_consistent_region_spl_02 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ConsistentRegion2-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── ConsistentRegion2.spl │ └── info.xml ├── 092_consistent_region_spl_03 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ConsistentRegion3-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── ConsistentRegion3.spl │ └── info.xml ├── 093_consistent_region_spl_04 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ConsistentRegion4-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── ConsistentRegion4.spl │ └── info.xml ├── 094_consistent_region_spl_05 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ConsistentRegion5-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── ConsistentRegion5.spl │ └── info.xml ├── 095_consistent_region_spl_06 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ConsistentRegion6-Distributed.splbuild │ │ ├── com.acme.test.TCPDataSender-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ ├── ConsistentRegion6.spl │ │ └── TCPDataSender.spl │ └── info.xml ├── 096_consistent_region_cpp_07 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ConsistentRegion7-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ ├── ConsistentRegion7.spl │ │ └── SimpleSourceOp │ │ │ ├── SimpleSourceOp.xml │ │ │ ├── SimpleSourceOp_cpp.cgt │ │ │ └── SimpleSourceOp_h.cgt │ └── info.xml ├── 097_consistent_region_cpp_08 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ConsistentRegion8-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ ├── ConsistentRegion8.spl │ │ └── CppCalculator │ │ │ ├── CppCalculator.xml │ │ │ ├── CppCalculator_cpp.cgt │ │ │ └── CppCalculator_h.cgt │ ├── data │ │ └── requests.txt │ └── info.xml ├── 098_consistent_region_java_09 │ ├── .apt_generated │ │ └── com │ │ │ └── acme │ │ │ └── test │ │ │ └── SimpleSourceOp$StreamsModel.java │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ConsistentRegion9-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ ├── ConsistentRegion9.spl │ │ └── SimpleSourceOp │ │ │ └── SimpleSourceOp.xml │ ├── impl │ │ └── java │ │ │ └── src │ │ │ └── com │ │ │ └── acme │ │ │ └── test │ │ │ └── SimpleSourceOp.java │ └── info.xml ├── 099_consistent_region_java_10 │ ├── .apt_generated │ │ └── com │ │ │ └── acme │ │ │ └── test │ │ │ └── JavaCalculator$StreamsModel.java │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ConsistentRegion10-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ ├── ConsistentRegion10.spl │ │ └── JavaCalculator │ │ │ └── JavaCalculator.xml │ ├── data │ │ └── requests.txt │ ├── impl │ │ └── java │ │ │ └── src │ │ │ └── com │ │ │ └── acme │ │ │ └── test │ │ │ └── JavaCalculator.java │ └── info.xml ├── 100_using_jmx_api_01 │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ └── src │ │ └── com │ │ └── acme │ │ └── test │ │ └── UseJmxToQueryDomains.java ├── 101_using_jmx_api_02 │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ └── src │ │ └── com │ │ └── acme │ │ └── test │ │ └── UsingJmxToGetBulkData.java ├── 102_using_jmx_api_03 │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ └── src │ │ └── com │ │ └── acme │ │ └── test │ │ └── UsingJmxNotifications.java ├── 103_view_annotation_at_work │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.acme.test.ViewAnnotationAtWork-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── com.acme.test │ │ ├── .namespace │ │ └── ViewAnnotationAtWork.spl │ └── info.xml ├── 901_cat_example │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── NumberedCat-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── NumberedCat.spl │ ├── README.md │ ├── catalog.json │ ├── data │ │ └── catFood.txt │ └── info.xml ├── 902_word_count │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── word.count.WordCount-Standalone.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── data │ │ └── catFood.txt │ ├── info.xml │ └── word │ │ └── count │ │ ├── Helpers.spl │ │ └── WordCount.spl ├── 903_unique │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── Main-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Main.spl │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── my.util │ │ └── Uniq.spl ├── 904_primitive_round_robin_split │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── Main-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Main.spl │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── my.util │ │ └── RoundRobinSplit │ │ ├── RoundRobinSplit.xml │ │ ├── RoundRobinSplit_cpp.cgt │ │ └── RoundRobinSplit_h.cgt ├── 905_gate_load_balancer │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── my.sample.Main-Standalone.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── my.sample │ │ └── Main.spl ├── Makefile ├── RSS_Reader_Standalone │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ └── src │ │ └── RSSReader.java ├── Sample_List ├── UsePrimitiveOperatorLib │ ├── .cproject │ ├── .project │ ├── Debug │ │ ├── UsePrimitiveOperatorLib │ │ ├── makefile │ │ ├── objects.mk │ │ ├── sources.mk │ │ └── src │ │ │ ├── UsePrimitiveOperatorLib.d │ │ │ ├── UsePrimitiveOperatorLib.o │ │ │ └── subdir.mk │ ├── Makefile │ ├── Release │ │ ├── makefile │ │ ├── objects.mk │ │ ├── sources.mk │ │ └── src │ │ │ └── subdir.mk │ └── src │ │ └── UsePrimitiveOperatorLib.cpp ├── gen_catalog_json.py └── generate_readme.py ├── GRADUATION_STATUS.md ├── General ├── ApacheNifi │ └── README.md ├── CppWindowSamples │ ├── README.md │ ├── SGFilter │ │ ├── Main.spl │ │ ├── Makefile │ │ ├── com.ibm.streamsx.sample.sgfilter │ │ │ └── SGFilter │ │ │ │ ├── SGFilter.xml │ │ │ │ ├── SGFilter_cpp.cgt │ │ │ │ └── SGFilter_h.cgt │ │ ├── data │ │ │ └── .gitignore │ │ ├── impl │ │ │ └── include │ │ │ │ └── streamsx │ │ │ │ └── sample │ │ │ │ └── sgfilter │ │ │ │ ├── Coefficients.h │ │ │ │ └── SGFilter.h │ │ ├── info.xml │ │ └── smoothed-11.exp │ └── catalog.json ├── LibertyStreamsProxy │ ├── LICENSE │ ├── README.md │ ├── UpperRest.spl │ ├── UpperRestRH6.sab │ ├── WebContent │ │ └── WEB-INF │ │ │ └── index.html │ ├── catalog.json │ ├── installJar │ │ └── com.ibm.streamsx.topology.jar │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ibm │ │ │ │ └── streamsx │ │ │ │ └── bridge │ │ │ │ └── http │ │ │ │ ├── FailedToFindStreamsException.java │ │ │ │ ├── LibertyProxyServlet.java │ │ │ │ ├── StreamCredential.java │ │ │ │ ├── StreamResource.java │ │ │ │ ├── StreamResources.java │ │ │ │ ├── StreamsBlueMix.java │ │ │ │ ├── TopoDisplayServlet.java │ │ │ │ └── TopologyResource.java │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── ibm │ │ │ └── streamsx │ │ │ └── bridge │ │ │ └── LibertyProxyTest.java │ └── web.xml ├── NativeFunctions │ ├── CryptoTest │ │ ├── .project │ │ ├── .settings │ │ │ ├── Decrypt-Standalone1.splbuild │ │ │ └── Encrypt-Standalone.splbuild │ │ ├── Decrypt.spl │ │ ├── Encrypt.spl │ │ ├── data │ │ │ └── plain_in.txt │ │ └── info.xml │ ├── README.md │ ├── catalog.json │ ├── com.ibm.streamsx.aes │ │ ├── .project │ │ ├── com.ibm.streamsx.aes │ │ │ └── native.function │ │ │ │ └── function.xml │ │ ├── impl │ │ │ └── include │ │ │ │ └── opensslwrapper.h │ │ └── info.xml │ └── com.ibm.streamsx.aesv2 │ │ ├── .project │ │ ├── com.ibm.streamsx.aes │ │ └── native.function │ │ │ └── function.xml │ │ ├── impl │ │ ├── Makefile │ │ ├── include │ │ │ └── opensslwrapper.h │ │ └── src │ │ │ └── opensslwrapper.cpp │ │ └── info.xml ├── SensorMonitor │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── Makefile │ ├── README.md │ ├── application │ │ ├── .namespace │ │ ├── PublishData.spl │ │ ├── SensorMonitorLateData.spl │ │ ├── SensorMonitorMain.spl │ │ ├── SensorMonitorMain_NoMHub.spl │ │ └── Utilities.spl │ ├── catalog.json │ ├── etc │ │ └── eventstreams.json │ ├── info.xml │ └── running-app.png ├── WindowTest │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── application.windowTest-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── README.md │ ├── application │ │ ├── .namespace │ │ ├── windowEvents │ │ │ └── windowEvents.xml │ │ └── windowTest.spl │ ├── catalog.json │ ├── impl │ │ └── java │ │ │ ├── bin │ │ │ └── application │ │ │ │ ├── WindowEventHandler.class │ │ │ │ ├── windowEvents$StreamsModel.class │ │ │ │ └── windowEvents.class │ │ │ └── src │ │ │ └── application │ │ │ ├── WindowEventHandler.java │ │ │ ├── windowEvents$StreamsModel.java │ │ │ └── windowEvents.java │ └── info.xml └── certificate │ └── README.md ├── Geospatial ├── GPXToTuple │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── com.ibm.streamsx.geospatial.sample.ParseSingleGPXFile-BuildConfig.splbuild │ ├── README.md │ ├── catalog.json │ ├── com.ibm.streamsx.geospatial.sample │ │ ├── .namespace │ │ ├── GPXReader.spl │ │ └── ParseSingleGPXFile.spl │ ├── data │ │ └── sample.gpx │ └── info.xml ├── GeofenceMarketing │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── com.ibm.streams.geospatial.sample.geofence.GeofenceMarketingMain-Distributed.splbuild │ │ ├── com.ibm.streams.geospatial.sample.geofence.GeofenceMarketingMain-Standalone.splbuild │ │ ├── com.ibm.streamsx.geospatial.sample.GeofenceMarketingMain-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── README.md │ ├── catalog.json │ ├── com.ibm.streamsx.geospatial.sample │ │ ├── .namespace │ │ ├── GeofenceMarketing.spl │ │ ├── GeospatialGen.spl │ │ └── MapViewer.spl │ ├── data │ │ ├── fences │ │ │ └── malls.csv │ │ └── input │ │ │ └── wonderland.csv │ ├── etc │ │ ├── map.html │ │ ├── marker-gold.png │ │ ├── marker-green.png │ │ └── marker-red.png │ ├── impl │ │ └── java │ │ │ └── src │ │ │ └── .temp │ └── info.xml ├── HangoutSample │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── hangoutsample.Main-BuildConfig.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── README.md │ ├── catalog.json │ ├── hangoutsample │ │ ├── .namespace │ │ └── Main.spl │ └── info.xml ├── MapMatch │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.ibm.streams.mapmatch.Main-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── README.md │ ├── catalog.json │ ├── com.ibm.streams.mapmatch │ │ ├── .namespace │ │ └── Main.spl │ ├── info.xml │ └── opt │ │ └── html │ │ └── index.html ├── MapViewerSample │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── com.ibm.streams.studio.splproject.cnf.spldoc.prefs │ │ ├── com.ibm.streamsx.mapviewer.Main-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── README.md │ ├── catalog.json │ ├── com.ibm.streamsx.mapviewer.gen │ │ ├── .namespace │ │ └── GeospatialGen.spl │ ├── com.ibm.streamsx.mapviewer │ │ ├── .namespace │ │ ├── Main.spl │ │ └── MapViewer.spl │ ├── etc │ │ ├── map.html │ │ ├── marker-gold.png │ │ ├── marker-green.png │ │ ├── marker-red.png │ │ └── warning.png │ ├── impl │ │ └── java │ │ │ ├── bin │ │ │ └── .temp │ │ │ └── src │ │ │ └── .temp │ └── info.xml └── OSMPointMapMatchingSample │ ├── .classpath │ ├── .project │ ├── .settings │ ├── application.OSMPointMapMatchingSample-Distributed.splbuild │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.jdt.apt.core.prefs │ └── org.eclipse.jdt.core.prefs │ ├── .toolkitList │ ├── README.md │ ├── application │ ├── .namespace │ └── OSMPointMapMatchingSample.spl │ ├── catalog.json │ ├── data │ └── .gitignore │ ├── etc │ └── bewdley.csv │ ├── images │ ├── map.png │ └── pe-host.png │ └── info.xml ├── IoT ├── ReadEdgentEvents │ ├── README.md │ ├── java │ │ └── StreamingAnalyticsAndEdgent │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── README.md │ │ │ ├── catalog.json │ │ │ └── src │ │ │ └── com │ │ │ └── ibm │ │ │ └── streamsx │ │ │ └── iot │ │ │ └── sample │ │ │ ├── ComputeRollingAverage.java │ │ │ ├── ReadAndSendCommands.java │ │ │ ├── ReadFromWatsonIoT.java │ │ │ └── SubmitToService.java │ ├── python │ │ ├── StreamsPythonAndEdgent │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── catalog.json │ │ │ ├── credentials.cfg │ │ │ └── read_from_edgent.py │ │ └── notebook │ │ │ └── Ingest IoT data in the Streaming Analytics service.ipynb │ └── spl │ │ └── README.md └── WeatherStationApp │ ├── Detect+malfunctioning+sensors+in+real+time.ipynb │ ├── WeatherStationSimulator │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── README.md │ ├── build.xml │ ├── device.cfg.example │ ├── src │ │ └── com │ │ │ └── ibm │ │ │ └── streamsx │ │ │ └── sample │ │ │ └── weather │ │ │ ├── Reading.java │ │ │ ├── Station.java │ │ │ ├── StationManager.java │ │ │ └── WeatherStationSimulator.java │ ├── start-weather-simulations.sh │ └── weather-station-simulator.jar │ └── img │ ├── bluemix-dashboard.png │ ├── dsx-weather-app.gif │ └── view_log.png ├── LICENSE.md ├── Performance └── ParallelParse │ ├── Makefile │ ├── ParallelParse.spl │ ├── README.md │ ├── catalog.json │ ├── makedata.py │ └── run.py ├── QuickStart ├── BusAlerts │ ├── .classpath │ ├── .project │ ├── README.md │ ├── catalog.json │ ├── data │ │ ├── poi.csv │ │ └── saved_BusLocations.txt │ ├── img │ │ ├── graph.png │ │ └── viewresults.gif │ ├── info.xml │ ├── my.name.space │ │ ├── .namespace │ │ ├── BusAlerts_CachedData.spl │ │ ├── BusAlerts_LiveData.spl │ │ └── ParseNextBusData.spl │ └── sampleinfo.xml ├── EventDetectionV2 │ ├── EventDetection.sab │ ├── License.txt │ ├── README.md │ ├── app.js │ ├── catalog.json │ ├── package.json │ ├── public │ │ └── stylesheets │ │ │ └── style.css │ ├── spl │ │ └── EventDetection.spl │ └── views │ │ ├── body.jade │ │ ├── head.jade │ │ └── index.jade ├── NYCTraffic │ ├── NYCTrafficSample │ │ ├── WebContent │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── WEB-INF │ │ │ │ ├── lib │ │ │ │ │ ├── com.ibm.json4j_1.0.9.jar │ │ │ │ │ ├── commons-logging-1.2.jar │ │ │ │ │ ├── httpclient-4.4.jar │ │ │ │ │ ├── httpcore-4.4.jar │ │ │ │ │ └── httpmime-4.4.jar │ │ │ │ └── web.xml │ │ │ ├── demodata.html │ │ │ ├── images │ │ │ │ └── streams_BM_Image.bmp │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── public │ │ │ │ ├── NYCTraffic.sab │ │ │ │ └── NYCTraffic.spl │ │ │ └── style.css │ │ ├── build.xml │ │ ├── dep-jar │ │ │ └── com.ibm.ws.javaee.jaxrs.1.1_1.0.1.jar │ │ ├── manifest.yml │ │ ├── src │ │ │ └── com │ │ │ │ └── ibm │ │ │ │ └── streams │ │ │ │ └── cloud │ │ │ │ └── samples │ │ │ │ ├── JSONException.java │ │ │ │ └── TrafficResource.java │ │ └── webStarterApp.war │ ├── README.md │ └── catalog.json └── TradesApp │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ ├── application.TradesAppCloud-BuildConfig.splbuild │ ├── application.TradesAppMain-BuildConfig1.splbuild │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.jdt.apt.core.prefs │ └── org.eclipse.jdt.core.prefs │ ├── README.md │ ├── application │ ├── .namespace │ └── TradesAppCloud.spl │ ├── catalog.json │ ├── data │ ├── .gitignore │ └── trades.csv │ ├── impl │ └── java │ │ └── src │ │ └── .gitignore │ ├── info.xml │ └── starterApp │ └── StockTradesStarterApp.sab ├── README.md ├── ReadAndStoreData ├── ApacheNifi │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── NiFiTest-BuildConfig.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── NifiSample.spl │ ├── README.md │ ├── catalog.json │ ├── data │ │ └── .gitkeep │ └── info.xml ├── Databases │ ├── DbLoader │ │ ├── Makefile │ │ ├── README │ │ ├── catalog.json │ │ ├── com.ibm.streamsx.db.dbloader │ │ │ ├── .namespace │ │ │ ├── DB2CheckDb.spl │ │ │ ├── DB2CreateConnection.spl │ │ │ ├── DB2LoadFile.spl │ │ │ ├── DBLoader.splmm │ │ │ ├── ExecuteCommand.spl │ │ │ ├── InformixCheckDb.spl │ │ │ ├── InformixLoadFile.spl │ │ │ ├── Logger.splmm │ │ │ ├── Main.splmm │ │ │ ├── NetezzaCheckDb.spl │ │ │ ├── NetezzaLoadFile.spl │ │ │ ├── OracleCheckDb.spl │ │ │ ├── OracleLoadFile.spl │ │ │ └── Types.spl │ │ ├── config │ │ │ ├── config.cfg │ │ │ └── configure.pl │ │ ├── document │ │ │ ├── html │ │ │ │ ├── commonltr.css │ │ │ │ ├── commonrtl.css │ │ │ │ ├── dita.list │ │ │ │ ├── dita.xml.properties │ │ │ │ ├── index.html │ │ │ │ ├── references │ │ │ │ │ └── OperatorModel.html │ │ │ │ ├── spldoc.css │ │ │ │ ├── tk$com.ibm.streams.telco.framework.dbloader │ │ │ │ │ ├── ix$Function.html │ │ │ │ │ ├── ix$Operator.html │ │ │ │ │ ├── ix$Type.html │ │ │ │ │ ├── ns$com.ibm.streamsx.db.dbloader.html │ │ │ │ │ ├── ns$com.ibm.streamsx.linuxshell.html │ │ │ │ │ ├── op$com.ibm.streamsx.linuxshell$LinuxSource.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$DB2CheckDb.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$DB2CreateConnection.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$DB2LoadFile.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$DBLoader.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$ExecuteCommand.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$InformixCheckDb.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$InformixLoadFile.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$Logger.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$Main.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$NetezzaCheckDb.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$NetezzaLoadFile.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$OracleCheckDb.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$OracleLoadFile.html │ │ │ │ │ ├── spl$com.ibm.streamsx.db.dbloader$Types.html │ │ │ │ │ └── tk$com.ibm.streams.telco.framework.dbloader.html │ │ │ │ ├── toc.html │ │ │ │ └── toolkits │ │ │ │ │ ├── ix$Function.html │ │ │ │ │ ├── ix$Operator.html │ │ │ │ │ ├── ix$Type.html │ │ │ │ │ └── toolkits.html │ │ │ └── image │ │ │ │ └── tk$com.ibm.streams.telco.framework.dbloader │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$DB2CheckDb.svg │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$DB2CreateConnection.svg │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$DB2LoadFile.svg │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$DBLoader.svg │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$ExecuteCommand.svg │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$INFORMIXCheckDb.svg │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$INFORMIXLoadFile.svg │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$Logger.svg │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$Main.svg │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$NETEZZACheckDb.svg │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$NETEZZALoadFile.svg │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$ORACLECheckDb.svg │ │ │ │ ├── op$com.ibm.streamsx.db.dbloader$ORACLELoadFile.svg │ │ │ │ └── op$com.ibm.streamsx.linuxshell$LinuxSource.svg │ │ ├── info.xml │ │ └── scripts │ │ │ └── Configuration.pm │ ├── JDBCForBluemix │ │ ├── README.md │ │ ├── WeatherAnalysis │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── application.WeatherAnalysis-Distributed1.splbuild │ │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── application │ │ │ │ ├── .namespace │ │ │ │ └── WeatherAnalysis.spl │ │ │ └── info.xml │ │ └── catalog.json │ └── TeradataODBC │ │ ├── .project │ │ ├── Makefile │ │ ├── README │ │ ├── application │ │ ├── .namespace │ │ └── Main.spl │ │ ├── catalog.json │ │ ├── etc │ │ └── connections.xml │ │ ├── odbc.ini │ │ └── odbcinst.ini ├── RESTEndpointsSample │ ├── README.md │ ├── catalog.json │ ├── info.xml │ ├── sample │ │ ├── .namespace │ │ ├── BasicCalculator.spl │ │ ├── CalculatorRESTService.spl │ │ └── Types.spl │ └── sample_client.ipynb └── TwitterSmackdown │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.jdt.apt.core.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── project.sploptions │ ├── sample.Smackdown-BuildConfig.splbuild │ └── sample.TwitterStream-BuildConfig1.splbuild │ ├── Makefile │ ├── README.md │ ├── catalog.json │ ├── info.xml │ └── sample │ ├── Smackdown.spl │ └── TwitterStream.spl ├── StreamsFlows ├── AggregateExamples │ ├── Aggregation_examples.stp │ ├── README.md │ ├── catalog.json │ └── sample_output │ │ ├── 10min_dept_sales.csv │ │ ├── 30min_dept_sales.csv │ │ ├── 5min_dept_sales.csv │ │ ├── TotalSales.csv │ │ └── customers_per_hr.csv ├── ForecastWithR │ └── README.md ├── IoT_TimeBasedBilling │ ├── README.md │ ├── Time_based_billing_app.stp │ ├── Time_based_billing_no_DB2_connection.stp │ ├── Utility meter simulator.ipynb │ ├── catalog.json │ ├── db2 │ │ ├── customers.csv │ │ ├── devices.csv │ │ └── utility.ddl │ ├── images │ │ ├── db2-creds.png │ │ ├── db2-load.png │ │ ├── db2-manage.png │ │ ├── db2-python.png │ │ └── db2-run.png │ └── send_data_to_iotplatform.py └── README.md ├── TextAnalysis ├── BigInsightsStarterKitApp │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── application.BigInsightsStarterKitMain-Distributed.splbuild │ ├── Makefile │ ├── README.md │ ├── application │ │ ├── .namespace │ │ ├── BigInsightsStarterKitApp.spl │ │ └── Types.spl │ ├── catalog.json │ ├── data │ │ └── twitterNEG_POS.json │ ├── etc │ │ └── productSentimentExtractor │ │ │ ├── resources │ │ │ └── biadmin │ │ │ │ └── Product_Sentiment │ │ │ │ ├── externalDictionary │ │ │ │ ├── SentimentCustom_NegativeAdverbs.dict │ │ │ │ ├── SentimentCustom_Speaker.dict │ │ │ │ ├── SentimentCustom_SpeakerDoesTargetNegative_V.dict │ │ │ │ ├── SentimentCustom_SpeakerDoesTargetPositive_V.dict │ │ │ │ ├── SentimentCustom_SpeakerExpectedTo_V.dict │ │ │ │ ├── SentimentCustom_TargetDoesNegative_V.dict │ │ │ │ ├── SentimentCustom_TargetDoesPositive_V.dict │ │ │ │ ├── SentimentCustom_TargetExpectedTo_V.dict │ │ │ │ ├── SentimentCustom_TargetIsObjectNegative_O.dict │ │ │ │ ├── SentimentCustom_TargetIsObjectPositive_O.dict │ │ │ │ ├── SentimentCustom_TargetNeedsToBeXNegative.dict │ │ │ │ ├── SentimentCustom_TargetNeedsXNegative.dict │ │ │ │ └── SentimentCustom_V_TargetRequest.dict │ │ │ │ └── externalTable │ │ │ │ └── SentimentCustom_Configuration.csv │ │ │ ├── src │ │ │ ├── biadmin_biadmin │ │ │ │ ├── Brand_plus_product.aql │ │ │ │ └── Product_Sentiment.aql │ │ │ ├── biadmin_biadmin_1456446145518 │ │ │ │ ├── Brand.aql │ │ │ │ └── Product_Name.aql │ │ │ ├── biadmin_biadmin_1456446145518__Export │ │ │ │ ├── Brand.aql │ │ │ │ ├── Brand.dict │ │ │ │ ├── Product_Name.aql │ │ │ │ └── Product_Name.dict │ │ │ └── biadmin_biadmin__Export │ │ │ │ ├── Brand_plus_product.aql │ │ │ │ └── Product_Sentiment.aql │ │ │ └── tams │ │ │ ├── AApiAR.tam │ │ │ ├── ActionAPI.tam │ │ │ ├── ESG.tam │ │ │ ├── ESGFunctions.tam │ │ │ ├── IEWTDocument.tam │ │ │ ├── InputDocumentProcessor.tam │ │ │ ├── Sentiment.tam │ │ │ ├── SentimentCustom.tam │ │ │ ├── SentimentCustomTables.tam │ │ │ ├── SentimentDeploymentGeneric.tam │ │ │ ├── SentimentMacros.tam │ │ │ ├── sentences.tam │ │ │ └── udf.tam │ └── info.xml ├── Makefile ├── TextAnalyticsDemo │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── application.ProductSearch-BuildConfig.splbuild │ │ └── application.ProductSearchWithUpdate-BuildConfig1.splbuild │ ├── README.md │ ├── application │ │ ├── .namespace │ │ ├── ProductSearchComposite.spl │ │ ├── ProductSearchWithUpdate.spl │ │ └── WebOutput.spl │ ├── catalog.json │ ├── data │ │ ├── input │ │ │ ├── bigdata_blog.txt │ │ │ ├── ibm_spark.txt │ │ │ └── ibm_twc.txt │ │ ├── new_offerings.txt │ │ └── updates │ │ │ └── .gitignore │ ├── etc │ │ ├── Offerings_dict_initial.dict │ │ ├── mentions_extractor │ │ │ ├── src │ │ │ │ ├── biblumix_biblumix │ │ │ │ │ └── Mentions.aql │ │ │ │ ├── biblumix_biblumix_1456168144115 │ │ │ │ │ ├── Offerings.aql │ │ │ │ │ └── Organizations.aql │ │ │ │ ├── biblumix_biblumix_1456168144115__Export │ │ │ │ │ ├── Offerings.aql │ │ │ │ │ ├── Offerings.dict │ │ │ │ │ ├── Organizations.aql │ │ │ │ │ └── Organizations.dict │ │ │ │ └── biblumix_biblumix__Export │ │ │ │ │ └── Mentions.aql │ │ │ └── tams │ │ │ │ ├── IEWTDocument.tam │ │ │ │ └── InputDocumentProcessor.tam │ │ ├── updated_mentions_extractor │ │ │ ├── resources │ │ │ │ ├── resources.properties │ │ │ │ └── streams_1473700723840 │ │ │ │ │ └── Offerings_External │ │ │ │ │ └── externalDictionary │ │ │ │ │ └── tauser__TextProject___Export_Offerings_dict.dict │ │ │ ├── src │ │ │ │ ├── tauser__TextProject___Export │ │ │ │ │ └── Offerings.aql │ │ │ │ ├── tauser_streams │ │ │ │ │ └── Mentions.aql │ │ │ │ ├── tauser_streams_1473700723840 │ │ │ │ │ ├── Offerings_External.aql │ │ │ │ │ └── Organizations.aql │ │ │ │ ├── tauser_streams_1473700723840__Export │ │ │ │ │ ├── Offerings_External.aql │ │ │ │ │ ├── Organizations.aql │ │ │ │ │ └── Organizations.dict │ │ │ │ └── tauser_streams__Export │ │ │ │ │ └── Mentions.aql │ │ │ └── tams │ │ │ │ ├── IEWTDocument.tam │ │ │ │ └── InputDocumentProcessor.tam │ │ └── web │ │ │ ├── index.html │ │ │ └── table.js │ └── info.xml └── TextAnalyticsToGo │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ ├── normalize.example.NormalizeMentions-Standalone.splbuild │ └── tokenize.example.SPLTokenize-Standalone1.splbuild │ ├── Makefile │ ├── catalog.json │ ├── data │ ├── .gitignore │ ├── aliasout.txt │ └── soccer_in.txt │ ├── etc │ ├── PrideAndPrejudiceAliases.csv │ ├── aliases.csv │ ├── findnormalize │ │ └── FindAndNormalize.aql │ ├── stopwords.dict │ └── usetokenizer │ │ └── tokenize.aql │ ├── info.xml │ ├── normalize.example │ └── NormalizeMentions.spl │ ├── runall.sh │ └── tokenize.example │ ├── SPLTokenize.spl │ ├── TokenBag.spl │ └── TokenStream.spl ├── categorykey.txt ├── extSamples.json ├── generate-full-catalog-json.py ├── timeseries ├── .gitignore ├── AnomalyDetectorSample │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── application.AnomalyDetectorArticle-BuildConfig.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── application │ │ ├── .namespace │ │ └── AnomalyDetectorArticle.spl │ ├── catalog.json │ ├── data │ │ ├── detectedAnomalies.txt │ │ └── pktsPerSec.txt │ └── info.xml ├── AutoForecasterSamples │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── application.AutoForecasterSamples-BuildConfig.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── application │ │ ├── .namespace │ │ └── AutoForecasterSamples.spl │ ├── catalog.json │ ├── data │ │ ├── netload.out │ │ └── result.txt │ └── info.xml ├── DSPFilterBandpassExample │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── FilterExample.FilterExampleMain-Distributed.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── FilterExample │ │ ├── .namespace │ │ └── FilterExampleMain.spl │ ├── Makefile │ ├── README.md │ ├── catalog.json │ └── info.xml ├── DSPFilterFiniteSample │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── application.DSPFilterFiniteSample-BuildConfig.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── README.md │ ├── application │ │ ├── .namespace │ │ └── DSPFilterFiniteSample.spl │ ├── catalog.json │ └── info.xml ├── KMeansClusteringControlSignalSample │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── com.ibm.streamsx.timeseries.sample.KMeansClusteringControlSignalSample-BuildConfig.splbuild │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── Makefile │ ├── com.ibm.streamsx.timeseries.sample │ │ ├── .namespace │ │ └── KMeansClusteringControlSignalSample.spl │ ├── etc │ │ └── data_points.txt │ └── info.xml ├── Makefile ├── README.md ├── STD2Samples │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── application.STD2Anomaly-BuildConfig.splbuild │ │ ├── application.STD2Basic-BuildConfig1.splbuild │ │ ├── application.STD2FiniteLength-BuildConfig2.splbuild │ │ └── application.STD2Random-BuildConfig3.splbuild │ ├── Makefile │ ├── README.md │ ├── application │ │ ├── .namespace │ │ ├── STD2Anomaly.spl │ │ ├── STD2Basic.spl │ │ ├── STD2FiniteLength.spl │ │ └── STD2Random.spl │ ├── build.xml │ ├── catalog.json │ ├── data │ │ ├── anomaly_input.csv │ │ └── simple_input.csv │ └── info.xml └── images │ ├── ad11.png │ ├── ad12.png │ └── af2.gif └── updateCatalogDB.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/.gitignore -------------------------------------------------------------------------------- /ConsistentRegions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/Makefile -------------------------------------------------------------------------------- /ConsistentRegions/NonBlockingCheckpoint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/NonBlockingCheckpoint/Makefile -------------------------------------------------------------------------------- /ConsistentRegions/NonBlockingCheckpoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/NonBlockingCheckpoint/README.md -------------------------------------------------------------------------------- /ConsistentRegions/NonBlockingCheckpoint/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/NonBlockingCheckpoint/catalog.json -------------------------------------------------------------------------------- /ConsistentRegions/NonBlockingCheckpoint/data/delay.50K: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/NonBlockingCheckpoint/data/delay.50K -------------------------------------------------------------------------------- /ConsistentRegions/NonBlockingCheckpoint/data/input.50K: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/NonBlockingCheckpoint/data/input.50K -------------------------------------------------------------------------------- /ConsistentRegions/NonBlockingCheckpoint/test/test.splmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/NonBlockingCheckpoint/test/test.splmm -------------------------------------------------------------------------------- /ConsistentRegions/OddEven/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/OddEven/.classpath -------------------------------------------------------------------------------- /ConsistentRegions/OddEven/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/OddEven/.project -------------------------------------------------------------------------------- /ConsistentRegions/OddEven/.settings/Main-Distributed.splbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/OddEven/.settings/Main-Distributed.splbuild -------------------------------------------------------------------------------- /ConsistentRegions/OddEven/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /ConsistentRegions/OddEven/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/OddEven/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /ConsistentRegions/OddEven/Main.splmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/OddEven/Main.splmm -------------------------------------------------------------------------------- /ConsistentRegions/OddEven/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/OddEven/Makefile -------------------------------------------------------------------------------- /ConsistentRegions/OddEven/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/OddEven/README -------------------------------------------------------------------------------- /ConsistentRegions/OddEven/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/OddEven/catalog.json -------------------------------------------------------------------------------- /ConsistentRegions/OddEven/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConsistentRegions/OddEven/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/OddEven/info.xml -------------------------------------------------------------------------------- /ConsistentRegions/WordCount/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/WordCount/.classpath -------------------------------------------------------------------------------- /ConsistentRegions/WordCount/.gitignore: -------------------------------------------------------------------------------- 1 | /.toolkitList 2 | /output/ 3 | -------------------------------------------------------------------------------- /ConsistentRegions/WordCount/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/WordCount/.project -------------------------------------------------------------------------------- /ConsistentRegions/WordCount/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /ConsistentRegions/WordCount/.settings/project.sploptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/WordCount/.settings/project.sploptions -------------------------------------------------------------------------------- /ConsistentRegions/WordCount/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/WordCount/Main.spl -------------------------------------------------------------------------------- /ConsistentRegions/WordCount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/WordCount/Makefile -------------------------------------------------------------------------------- /ConsistentRegions/WordCount/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/WordCount/README -------------------------------------------------------------------------------- /ConsistentRegions/WordCount/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/WordCount/catalog.json -------------------------------------------------------------------------------- /ConsistentRegions/WordCount/data/loremIpsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/WordCount/data/loremIpsum.txt -------------------------------------------------------------------------------- /ConsistentRegions/WordCount/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/WordCount/info.xml -------------------------------------------------------------------------------- /ConsistentRegions/WordCount/result.dat.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsistentRegions/WordCount/result.dat.exp -------------------------------------------------------------------------------- /ConsoleAndMonitoring/IndexAnalyzer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsoleAndMonitoring/IndexAnalyzer/.classpath -------------------------------------------------------------------------------- /ConsoleAndMonitoring/IndexAnalyzer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsoleAndMonitoring/IndexAnalyzer/.project -------------------------------------------------------------------------------- /ConsoleAndMonitoring/IndexAnalyzer/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /ConsoleAndMonitoring/IndexAnalyzer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsoleAndMonitoring/IndexAnalyzer/Makefile -------------------------------------------------------------------------------- /ConsoleAndMonitoring/IndexAnalyzer/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsoleAndMonitoring/IndexAnalyzer/README.MD -------------------------------------------------------------------------------- /ConsoleAndMonitoring/IndexAnalyzer/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsoleAndMonitoring/IndexAnalyzer/catalog.json -------------------------------------------------------------------------------- /ConsoleAndMonitoring/IndexAnalyzer/data/TradesAndQuotes.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsoleAndMonitoring/IndexAnalyzer/data/TradesAndQuotes.csv.gz -------------------------------------------------------------------------------- /ConsoleAndMonitoring/IndexAnalyzer/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsoleAndMonitoring/IndexAnalyzer/info.xml -------------------------------------------------------------------------------- /ConsoleAndMonitoring/IndexAnalyzer/sample/IndexAnalyzer.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsoleAndMonitoring/IndexAnalyzer/sample/IndexAnalyzer.spl -------------------------------------------------------------------------------- /ConsoleAndMonitoring/IndexAnalyzer/sample/IndexCalculator.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsoleAndMonitoring/IndexAnalyzer/sample/IndexCalculator.spl -------------------------------------------------------------------------------- /ConsoleAndMonitoring/IndexAnalyzer/sample/TradeSource.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsoleAndMonitoring/IndexAnalyzer/sample/TradeSource.spl -------------------------------------------------------------------------------- /ConsoleAndMonitoring/IndexAnalyzer/sample/VwapTypes.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsoleAndMonitoring/IndexAnalyzer/sample/VwapTypes.spl -------------------------------------------------------------------------------- /ConsoleAndMonitoring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ConsoleAndMonitoring/Makefile -------------------------------------------------------------------------------- /Databases/DbLoader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Databases/DbLoader/README.md -------------------------------------------------------------------------------- /Databases/JDBCForBluemix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Databases/JDBCForBluemix/README.md -------------------------------------------------------------------------------- /Databases/TeradataODBC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Databases/TeradataODBC/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/001_hello_world_in_spl/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/001_hello_world_in_spl/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/001_hello_world_in_spl/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/001_hello_world_in_spl/.project -------------------------------------------------------------------------------- /Examples-for-beginners/001_hello_world_in_spl/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/001_hello_world_in_spl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/001_hello_world_in_spl/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/001_hello_world_in_spl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/001_hello_world_in_spl/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/001_hello_world_in_spl/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/001_hello_world_in_spl/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/001_hello_world_in_spl/demo/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/001_hello_world_in_spl/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/001_hello_world_in_spl/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/002_source_sink_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/002_source_sink_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/002_source_sink_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/002_source_sink_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/002_source_sink_at_work/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/002_source_sink_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/002_source_sink_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/002_source_sink_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/002_source_sink_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/002_source_sink_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/002_source_sink_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/002_source_sink_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/002_source_sink_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/003_sink_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/003_sink_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/003_sink_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/003_sink_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/003_sink_at_work/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/003_sink_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/003_sink_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/003_sink_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/003_sink_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/003_sink_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/003_sink_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/003_sink_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/003_sink_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/004_delay_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/004_delay_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/004_delay_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/004_delay_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/004_delay_at_work/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/004_delay_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/004_delay_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/004_delay_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/004_delay_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/004_delay_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/004_delay_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/004_delay_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/004_delay_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/005_throttle_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/005_throttle_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/005_throttle_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/005_throttle_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/005_throttle_at_work/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/005_throttle_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/005_throttle_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/005_throttle_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/005_throttle_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/005_throttle_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/005_throttle_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/005_throttle_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/005_throttle_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/006_barrier_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/006_barrier_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/006_barrier_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/006_barrier_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/006_barrier_at_work/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/006_barrier_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/006_barrier_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/006_barrier_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/006_barrier_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/006_barrier_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/006_barrier_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/006_barrier_at_work/data/bank_tasks.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/006_barrier_at_work/data/bank_tasks.dat -------------------------------------------------------------------------------- /Examples-for-beginners/006_barrier_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/006_barrier_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/007_split_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/007_split_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/007_split_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/007_split_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/007_split_at_work/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/007_split_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/007_split_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/007_split_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/007_split_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/007_split_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/007_split_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/007_split_at_work/data/mapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/007_split_at_work/data/mapping.txt -------------------------------------------------------------------------------- /Examples-for-beginners/007_split_at_work/data/stock_report.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/007_split_at_work/data/stock_report.dat -------------------------------------------------------------------------------- /Examples-for-beginners/007_split_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/007_split_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/008_get_submission_time_value/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/008_get_submission_time_value/.project -------------------------------------------------------------------------------- /Examples-for-beginners/008_get_submission_time_value/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/008_get_submission_time_value/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/008_get_submission_time_value/Main.spl -------------------------------------------------------------------------------- /Examples-for-beginners/008_get_submission_time_value/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/008_get_submission_time_value/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/008_get_submission_time_value/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/008_get_submission_time_value/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/008_get_submission_time_value/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/008_get_submission_time_value/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/009_custom_operator_using_get_submission_time_value/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/010_get_compile_time_value/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/010_get_compile_time_value/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/010_get_compile_time_value/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/010_get_compile_time_value/.project -------------------------------------------------------------------------------- /Examples-for-beginners/010_get_compile_time_value/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/010_get_compile_time_value/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/010_get_compile_time_value/Main.spl -------------------------------------------------------------------------------- /Examples-for-beginners/010_get_compile_time_value/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/010_get_compile_time_value/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/010_get_compile_time_value/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/010_get_compile_time_value/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/010_get_compile_time_value/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/010_get_compile_time_value/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/010_get_compile_time_value/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/010_get_compile_time_value/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/012_filter_functor_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/012_filter_functor_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/012_filter_functor_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/012_filter_functor_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/012_filter_functor_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/012_filter_functor_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/012_filter_functor_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/012_filter_functor_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/012_filter_functor_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/012_filter_functor_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/012_filter_functor_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/012_filter_functor_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/013_punctor_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/013_punctor_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/013_punctor_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/013_punctor_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/013_punctor_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/013_punctor_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/013_punctor_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/013_punctor_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/013_punctor_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/013_punctor_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/013_punctor_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/013_punctor_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/013_punctor_at_work/my.sample/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/013_punctor_at_work/my.sample/Main.spl -------------------------------------------------------------------------------- /Examples-for-beginners/014_sort_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/014_sort_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/014_sort_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/014_sort_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/014_sort_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/014_sort_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/014_sort_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/014_sort_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/014_sort_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/014_sort_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/014_sort_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/014_sort_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/014_sort_at_work/my/sample/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/014_sort_at_work/my/sample/Main.spl -------------------------------------------------------------------------------- /Examples-for-beginners/015_join_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/015_join_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/015_join_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/015_join_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/015_join_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/015_join_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/015_join_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/015_join_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/015_join_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/015_join_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/015_join_at_work/data/inventory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/015_join_at_work/data/inventory.txt -------------------------------------------------------------------------------- /Examples-for-beginners/015_join_at_work/data/orders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/015_join_at_work/data/orders.txt -------------------------------------------------------------------------------- /Examples-for-beginners/015_join_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/015_join_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/015_join_at_work/my/sample/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/015_join_at_work/my/sample/Main.spl -------------------------------------------------------------------------------- /Examples-for-beginners/016_aggregate_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/016_aggregate_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/016_aggregate_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/016_aggregate_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/016_aggregate_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/016_aggregate_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/016_aggregate_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/016_aggregate_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/016_aggregate_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/016_aggregate_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/016_aggregate_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/016_aggregate_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/018_directory_scan_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/018_directory_scan_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/018_directory_scan_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/018_directory_scan_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/018_directory_scan_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/018_directory_scan_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/018_directory_scan_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/018_directory_scan_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/018_directory_scan_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/018_directory_scan_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/018_directory_scan_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/018_directory_scan_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/019_import_export_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/019_import_export_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/019_import_export_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/019_import_export_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/019_import_export_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/019_import_export_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/019_import_export_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/019_import_export_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/019_import_export_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/019_import_export_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/019_import_export_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/019_import_export_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/020_metrics_sink_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/020_metrics_sink_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/020_metrics_sink_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/020_metrics_sink_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/020_metrics_sink_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/020_metrics_sink_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/020_metrics_sink_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/020_metrics_sink_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/020_metrics_sink_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/020_metrics_sink_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/020_metrics_sink_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/020_metrics_sink_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/021_pair_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/021_pair_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/021_pair_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/021_pair_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/021_pair_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/021_pair_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/021_pair_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/021_pair_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/021_pair_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/021_pair_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/021_pair_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/021_pair_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/021_pair_at_work/my.sample/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/021_pair_at_work/my.sample/Main.spl -------------------------------------------------------------------------------- /Examples-for-beginners/022_deduplicate_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/022_deduplicate_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/022_deduplicate_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/022_deduplicate_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/022_deduplicate_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/022_deduplicate_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/022_deduplicate_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/022_deduplicate_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/022_deduplicate_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/022_deduplicate_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/022_deduplicate_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/022_deduplicate_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/023_union_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/023_union_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/023_union_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/023_union_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/023_union_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/023_union_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/023_union_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/023_union_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/023_union_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/023_union_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/023_union_at_work/data/inventory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/023_union_at_work/data/inventory.txt -------------------------------------------------------------------------------- /Examples-for-beginners/023_union_at_work/data/orders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/023_union_at_work/data/orders.txt -------------------------------------------------------------------------------- /Examples-for-beginners/023_union_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/023_union_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/023_union_at_work/my.sample/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/023_union_at_work/my.sample/Main.spl -------------------------------------------------------------------------------- /Examples-for-beginners/024_threaded_split_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/024_threaded_split_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/024_threaded_split_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/024_threaded_split_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/024_threaded_split_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/024_threaded_split_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/024_threaded_split_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/024_threaded_split_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/024_threaded_split_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/024_threaded_split_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/024_threaded_split_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/024_threaded_split_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/025_dynamic_filter_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/025_dynamic_filter_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/025_dynamic_filter_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/025_dynamic_filter_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/025_dynamic_filter_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/025_dynamic_filter_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/025_dynamic_filter_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/025_dynamic_filter_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/025_dynamic_filter_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/025_dynamic_filter_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/025_dynamic_filter_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/025_dynamic_filter_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/026_gate_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/026_gate_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/026_gate_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/026_gate_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/026_gate_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/026_gate_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/026_gate_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/026_gate_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/026_gate_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/026_gate_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/026_gate_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/026_gate_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/026_gate_at_work/my.sample/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/026_gate_at_work/my.sample/Main.spl -------------------------------------------------------------------------------- /Examples-for-beginners/029_spl_functions_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/029_spl_functions_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/029_spl_functions_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/029_spl_functions_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/029_spl_functions_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/029_spl_functions_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/029_spl_functions_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/029_spl_functions_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/029_spl_functions_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/029_spl_functions_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/029_spl_functions_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/029_spl_functions_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/030_spl_config_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/030_spl_config_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/030_spl_config_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/030_spl_config_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/030_spl_config_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/030_spl_config_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/030_spl_config_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/030_spl_config_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/030_spl_config_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/030_spl_config_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/030_spl_config_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/030_spl_config_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/031_spl_mixed_mode_at_work/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/031_spl_mixed_mode_at_work/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/031_spl_mixed_mode_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/031_spl_mixed_mode_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/031_spl_mixed_mode_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/031_spl_mixed_mode_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/031_spl_mixed_mode_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/031_spl_mixed_mode_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/031_spl_mixed_mode_at_work/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/031_spl_mixed_mode_at_work/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/031_spl_mixed_mode_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/031_spl_mixed_mode_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/032_native_function_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/032_native_function_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/032_native_function_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/032_native_function_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/034_odbc_adapters_for_db2_at_work/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/039_application_set_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/039_application_set_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/039_application_set_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/039_application_set_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/039_application_set_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/039_application_set_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/041_real_time_streams_merger/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/041_real_time_streams_merger/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/041_real_time_streams_merger/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/041_real_time_streams_merger/.project -------------------------------------------------------------------------------- /Examples-for-beginners/041_real_time_streams_merger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/041_real_time_streams_merger/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/041_real_time_streams_merger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/041_real_time_streams_merger/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/041_real_time_streams_merger/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/041_real_time_streams_merger/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/041_real_time_streams_merger/real.time.merger/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/042_dynamic_import_export_api_at_work/dynamic.importing.exporting/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/043_import_export_filter_at_work/importing.exporting.filter/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/044_streams_checkpointing_at_work/checkpointing.example/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/045_file_source_using_spl_custom_operator/my.file.source/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/046_launching_external_apps_in_spl/launch.external.apps/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/047_streams_host_tags_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/047_streams_host_tags_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/047_streams_host_tags_at_work/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/047_streams_host_tags_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/047_streams_host_tags_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/047_streams_host_tags_at_work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/047_streams_host_tags_at_work/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/047_streams_host_tags_at_work/host.tags/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/047_streams_host_tags_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/047_streams_host_tags_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/048_source_operator_with_control_port/source_op_with_control_port/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/049_json_to_tuple_to_json_using_java/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/049_json_to_tuple_to_json_using_java/com.ibm.streamsx.json/JSONToTuple/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/049_json_to_tuple_to_json_using_java/com.ibm.streamsx.json/TupleToJSON/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/050_recursive_dir_scan/050_recursive_dir_scan/recursive.dir.scan/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/050_recursive_dir_scan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/050_recursive_dir_scan/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/050_recursive_dir_scan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/050_recursive_dir_scan/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/050_recursive_dir_scan/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/050_recursive_dir_scan/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/051_native_functions_with_collection_types/051_native_functions_with_collection_types/com.ibm.nf.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/053_java_primitive_operator_with_complex_output_tuple_types/053_java_primitive_operator_with_complex_output_tuple_types/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/054_serialize_deserialize_tuples/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/055_json_to_tuple_to_json_using_c++/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/057_reading_nested_tuple_data_via_file_source/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/057_reading_nested_tuple_data_via_file_source/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/059_dynamic_scaleout_of_streams_application/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/059_dynamic_scaleout_of_streams_application/com.ibm.streams.pricing.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/059_dynamic_scaleout_of_streams_application/com.ibm.streams.pricing/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/060_simple_pe_failover_technique_at_work/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/060_simple_pe_failover_technique_at_work/com.acme.failover.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/063_on_the_fly_tuple_creation_and_encoding_decoding_in_java_primitive_operators/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/064_using_spl_composite_params/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/064_using_spl_composite_params/.project -------------------------------------------------------------------------------- /Examples-for-beginners/064_using_spl_composite_params/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/064_using_spl_composite_params/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/064_using_spl_composite_params/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/064_using_spl_composite_params/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/064_using_spl_composite_params/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/064_using_spl_composite_params/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/065_using_multiple_threads_in_java_operator/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/065_using_multiple_threads_in_java_operator/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/066_load_balancing_using_gate/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/066_load_balancing_using_gate/.project -------------------------------------------------------------------------------- /Examples-for-beginners/066_load_balancing_using_gate/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/066_load_balancing_using_gate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/066_load_balancing_using_gate/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/066_load_balancing_using_gate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/066_load_balancing_using_gate/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/066_load_balancing_using_gate/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/066_load_balancing_using_gate/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/066_load_balancing_using_gate/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/067_simple_java_source_operator/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/067_simple_java_source_operator/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/068_tuple_introspection_inside_java_operator/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/068_tuple_introspection_inside_java_operator/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/069_changing_map_value_during_iteration/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/069_changing_map_value_during_iteration/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/070_convert_block_data_into_tuples_using_parse/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/070_convert_block_data_into_tuples_using_parse/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/071_java_native_functions/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/071_java_native_functions/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/071_java_native_functions/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/071_java_native_functions/.project -------------------------------------------------------------------------------- /Examples-for-beginners/071_java_native_functions/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/071_java_native_functions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/071_java_native_functions/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/071_java_native_functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/071_java_native_functions/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/071_java_native_functions/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/071_java_native_functions/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/071_java_native_functions/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/071_java_native_functions/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/071_java_native_functions/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/072_using_streams_rest_apis/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/072_using_streams_rest_apis/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/072_using_streams_rest_apis/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/072_using_streams_rest_apis/.project -------------------------------------------------------------------------------- /Examples-for-beginners/072_using_streams_rest_apis/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/072_using_streams_rest_apis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/072_using_streams_rest_apis/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/072_using_streams_rest_apis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/072_using_streams_rest_apis/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/072_using_streams_rest_apis/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/072_using_streams_rest_apis/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/072_using_streams_rest_apis/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/073_java_operator_fusion/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/073_java_operator_fusion/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/073_java_operator_fusion/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/073_java_operator_fusion/.project -------------------------------------------------------------------------------- /Examples-for-beginners/073_java_operator_fusion/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/073_java_operator_fusion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/073_java_operator_fusion/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/073_java_operator_fusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/073_java_operator_fusion/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/073_java_operator_fusion/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/073_java_operator_fusion/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/073_java_operator_fusion/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/073_java_operator_fusion/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/073_java_operator_fusion/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/074_user_defined_parallelism_01/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/074_user_defined_parallelism_01/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/075_user_defined_parallelism_02/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/075_user_defined_parallelism_02/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/076_user_defined_parallelism_03/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/076_user_defined_parallelism_03/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/077_user_defined_parallelism_04/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/077_user_defined_parallelism_04/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/078_user_defined_parallelism_05/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/078_user_defined_parallelism_05/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/079_user_defined_parallelism_06/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/079_user_defined_parallelism_06/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/080_user_defined_parallelism_07/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/080_user_defined_parallelism_07/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/081_user_defined_parallelism_08/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/081_user_defined_parallelism_08/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/082_user_defined_parallelism_09/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/082_user_defined_parallelism_09/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/083_user_defined_parallelism_10/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/083_user_defined_parallelism_10/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/084_user_defined_parallelism_11/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/084_user_defined_parallelism_11/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/085_user_defined_parallelism_12/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/085_user_defined_parallelism_12/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/086_jms_source_sink_using_activemq/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/086_jms_source_sink_using_activemq/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/087_email_alerts_via_java_native_function/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/087_email_alerts_via_java_native_function/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/088_java_operator_params_and_multiple_input_output_ports/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/088_java_operator_params_and_multiple_input_output_ports/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/089_integrating_streams_apps_with_web_apps/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/089_integrating_streams_apps_with_web_apps/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/090_consistent_region_spl_01/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/090_consistent_region_spl_01/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/090_consistent_region_spl_01/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/090_consistent_region_spl_01/.project -------------------------------------------------------------------------------- /Examples-for-beginners/090_consistent_region_spl_01/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/090_consistent_region_spl_01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/090_consistent_region_spl_01/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/090_consistent_region_spl_01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/090_consistent_region_spl_01/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/090_consistent_region_spl_01/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/090_consistent_region_spl_01/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/090_consistent_region_spl_01/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/091_consistent_region_spl_02/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/091_consistent_region_spl_02/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/091_consistent_region_spl_02/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/091_consistent_region_spl_02/.project -------------------------------------------------------------------------------- /Examples-for-beginners/091_consistent_region_spl_02/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/091_consistent_region_spl_02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/091_consistent_region_spl_02/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/091_consistent_region_spl_02/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/092_consistent_region_spl_03/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/092_consistent_region_spl_03/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/093_consistent_region_spl_04/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/093_consistent_region_spl_04/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/094_consistent_region_spl_05/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/094_consistent_region_spl_05/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/095_consistent_region_spl_06/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/095_consistent_region_spl_06/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/096_consistent_region_cpp_07/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/096_consistent_region_cpp_07/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/097_consistent_region_cpp_08/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/097_consistent_region_cpp_08/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/098_consistent_region_java_09/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/098_consistent_region_java_09/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/099_consistent_region_java_10/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/099_consistent_region_java_10/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/100_using_jmx_api_01/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/100_using_jmx_api_01/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/100_using_jmx_api_01/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/100_using_jmx_api_01/.project -------------------------------------------------------------------------------- /Examples-for-beginners/100_using_jmx_api_01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/100_using_jmx_api_01/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/100_using_jmx_api_01/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/100_using_jmx_api_01/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/100_using_jmx_api_01/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/101_using_jmx_api_02/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/101_using_jmx_api_02/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/101_using_jmx_api_02/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/101_using_jmx_api_02/.project -------------------------------------------------------------------------------- /Examples-for-beginners/101_using_jmx_api_02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/101_using_jmx_api_02/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/101_using_jmx_api_02/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/101_using_jmx_api_02/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/101_using_jmx_api_02/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/102_using_jmx_api_03/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/102_using_jmx_api_03/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/102_using_jmx_api_03/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/102_using_jmx_api_03/.project -------------------------------------------------------------------------------- /Examples-for-beginners/102_using_jmx_api_03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/102_using_jmx_api_03/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/102_using_jmx_api_03/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/102_using_jmx_api_03/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/102_using_jmx_api_03/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/103_view_annotation_at_work/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/103_view_annotation_at_work/.project -------------------------------------------------------------------------------- /Examples-for-beginners/103_view_annotation_at_work/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/103_view_annotation_at_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/103_view_annotation_at_work/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/103_view_annotation_at_work/com.acme.test/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples-for-beginners/103_view_annotation_at_work/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/103_view_annotation_at_work/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/901_cat_example/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/901_cat_example/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/901_cat_example/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/901_cat_example/.project -------------------------------------------------------------------------------- /Examples-for-beginners/901_cat_example/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/901_cat_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/901_cat_example/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/901_cat_example/NumberedCat.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/901_cat_example/NumberedCat.spl -------------------------------------------------------------------------------- /Examples-for-beginners/901_cat_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/901_cat_example/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/901_cat_example/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/901_cat_example/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/901_cat_example/data/catFood.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/901_cat_example/data/catFood.txt -------------------------------------------------------------------------------- /Examples-for-beginners/901_cat_example/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/901_cat_example/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/902_word_count/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/902_word_count/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/902_word_count/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/902_word_count/.project -------------------------------------------------------------------------------- /Examples-for-beginners/902_word_count/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/902_word_count/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/902_word_count/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/902_word_count/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/902_word_count/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/902_word_count/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/902_word_count/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/902_word_count/data/catFood.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/902_word_count/data/catFood.txt -------------------------------------------------------------------------------- /Examples-for-beginners/902_word_count/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/902_word_count/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/903_unique/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/903_unique/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/903_unique/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/903_unique/.project -------------------------------------------------------------------------------- /Examples-for-beginners/903_unique/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/903_unique/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/903_unique/Main.spl -------------------------------------------------------------------------------- /Examples-for-beginners/903_unique/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/903_unique/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/903_unique/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/903_unique/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/903_unique/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/903_unique/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/903_unique/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/903_unique/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/903_unique/my.util/Uniq.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/903_unique/my.util/Uniq.spl -------------------------------------------------------------------------------- /Examples-for-beginners/904_primitive_round_robin_split/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/905_gate_load_balancer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/905_gate_load_balancer/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/905_gate_load_balancer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/905_gate_load_balancer/.project -------------------------------------------------------------------------------- /Examples-for-beginners/905_gate_load_balancer/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Examples-for-beginners/905_gate_load_balancer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/905_gate_load_balancer/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/905_gate_load_balancer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/905_gate_load_balancer/README.md -------------------------------------------------------------------------------- /Examples-for-beginners/905_gate_load_balancer/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/905_gate_load_balancer/catalog.json -------------------------------------------------------------------------------- /Examples-for-beginners/905_gate_load_balancer/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/905_gate_load_balancer/info.xml -------------------------------------------------------------------------------- /Examples-for-beginners/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/RSS_Reader_Standalone/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/RSS_Reader_Standalone/.classpath -------------------------------------------------------------------------------- /Examples-for-beginners/RSS_Reader_Standalone/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/RSS_Reader_Standalone/.project -------------------------------------------------------------------------------- /Examples-for-beginners/RSS_Reader_Standalone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/RSS_Reader_Standalone/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/Sample_List: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/Sample_List -------------------------------------------------------------------------------- /Examples-for-beginners/UsePrimitiveOperatorLib/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/UsePrimitiveOperatorLib/.cproject -------------------------------------------------------------------------------- /Examples-for-beginners/UsePrimitiveOperatorLib/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/UsePrimitiveOperatorLib/.project -------------------------------------------------------------------------------- /Examples-for-beginners/UsePrimitiveOperatorLib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/UsePrimitiveOperatorLib/Makefile -------------------------------------------------------------------------------- /Examples-for-beginners/gen_catalog_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/gen_catalog_json.py -------------------------------------------------------------------------------- /Examples-for-beginners/generate_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Examples-for-beginners/generate_readme.py -------------------------------------------------------------------------------- /GRADUATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/GRADUATION_STATUS.md -------------------------------------------------------------------------------- /General/ApacheNifi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/ApacheNifi/README.md -------------------------------------------------------------------------------- /General/CppWindowSamples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/CppWindowSamples/README.md -------------------------------------------------------------------------------- /General/CppWindowSamples/SGFilter/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/CppWindowSamples/SGFilter/Main.spl -------------------------------------------------------------------------------- /General/CppWindowSamples/SGFilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/CppWindowSamples/SGFilter/Makefile -------------------------------------------------------------------------------- /General/CppWindowSamples/SGFilter/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /General/CppWindowSamples/SGFilter/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/CppWindowSamples/SGFilter/info.xml -------------------------------------------------------------------------------- /General/CppWindowSamples/SGFilter/smoothed-11.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/CppWindowSamples/SGFilter/smoothed-11.exp -------------------------------------------------------------------------------- /General/CppWindowSamples/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/CppWindowSamples/catalog.json -------------------------------------------------------------------------------- /General/LibertyStreamsProxy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/LibertyStreamsProxy/LICENSE -------------------------------------------------------------------------------- /General/LibertyStreamsProxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/LibertyStreamsProxy/README.md -------------------------------------------------------------------------------- /General/LibertyStreamsProxy/UpperRest.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/LibertyStreamsProxy/UpperRest.spl -------------------------------------------------------------------------------- /General/LibertyStreamsProxy/UpperRestRH6.sab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/LibertyStreamsProxy/UpperRestRH6.sab -------------------------------------------------------------------------------- /General/LibertyStreamsProxy/WebContent/WEB-INF/index.html: -------------------------------------------------------------------------------- 1 | Greetings! 2 | -------------------------------------------------------------------------------- /General/LibertyStreamsProxy/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/LibertyStreamsProxy/catalog.json -------------------------------------------------------------------------------- /General/LibertyStreamsProxy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/LibertyStreamsProxy/pom.xml -------------------------------------------------------------------------------- /General/LibertyStreamsProxy/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/LibertyStreamsProxy/web.xml -------------------------------------------------------------------------------- /General/NativeFunctions/CryptoTest/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/NativeFunctions/CryptoTest/.project -------------------------------------------------------------------------------- /General/NativeFunctions/CryptoTest/Decrypt.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/NativeFunctions/CryptoTest/Decrypt.spl -------------------------------------------------------------------------------- /General/NativeFunctions/CryptoTest/Encrypt.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/NativeFunctions/CryptoTest/Encrypt.spl -------------------------------------------------------------------------------- /General/NativeFunctions/CryptoTest/data/plain_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/NativeFunctions/CryptoTest/data/plain_in.txt -------------------------------------------------------------------------------- /General/NativeFunctions/CryptoTest/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/NativeFunctions/CryptoTest/info.xml -------------------------------------------------------------------------------- /General/NativeFunctions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/NativeFunctions/README.md -------------------------------------------------------------------------------- /General/NativeFunctions/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/NativeFunctions/catalog.json -------------------------------------------------------------------------------- /General/NativeFunctions/com.ibm.streamsx.aes/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/NativeFunctions/com.ibm.streamsx.aes/.project -------------------------------------------------------------------------------- /General/NativeFunctions/com.ibm.streamsx.aes/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/NativeFunctions/com.ibm.streamsx.aes/info.xml -------------------------------------------------------------------------------- /General/NativeFunctions/com.ibm.streamsx.aesv2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/NativeFunctions/com.ibm.streamsx.aesv2/.project -------------------------------------------------------------------------------- /General/NativeFunctions/com.ibm.streamsx.aesv2/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/NativeFunctions/com.ibm.streamsx.aesv2/info.xml -------------------------------------------------------------------------------- /General/SensorMonitor/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/SensorMonitor/.classpath -------------------------------------------------------------------------------- /General/SensorMonitor/.gitignore: -------------------------------------------------------------------------------- 1 | /.apt_generated/ 2 | /.toolkitList 3 | /output/ 4 | -------------------------------------------------------------------------------- /General/SensorMonitor/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/SensorMonitor/.project -------------------------------------------------------------------------------- /General/SensorMonitor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/SensorMonitor/Makefile -------------------------------------------------------------------------------- /General/SensorMonitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/SensorMonitor/README.md -------------------------------------------------------------------------------- /General/SensorMonitor/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /General/SensorMonitor/application/PublishData.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/SensorMonitor/application/PublishData.spl -------------------------------------------------------------------------------- /General/SensorMonitor/application/SensorMonitorLateData.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/SensorMonitor/application/SensorMonitorLateData.spl -------------------------------------------------------------------------------- /General/SensorMonitor/application/SensorMonitorMain.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/SensorMonitor/application/SensorMonitorMain.spl -------------------------------------------------------------------------------- /General/SensorMonitor/application/Utilities.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/SensorMonitor/application/Utilities.spl -------------------------------------------------------------------------------- /General/SensorMonitor/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/SensorMonitor/catalog.json -------------------------------------------------------------------------------- /General/SensorMonitor/etc/eventstreams.json: -------------------------------------------------------------------------------- 1 | ## PASTE CREDENTIALS HERE -------------------------------------------------------------------------------- /General/SensorMonitor/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/SensorMonitor/info.xml -------------------------------------------------------------------------------- /General/SensorMonitor/running-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/SensorMonitor/running-app.png -------------------------------------------------------------------------------- /General/WindowTest/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/WindowTest/.classpath -------------------------------------------------------------------------------- /General/WindowTest/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/WindowTest/.project -------------------------------------------------------------------------------- /General/WindowTest/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /General/WindowTest/.settings/org.eclipse.jdt.apt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/WindowTest/.settings/org.eclipse.jdt.apt.core.prefs -------------------------------------------------------------------------------- /General/WindowTest/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/WindowTest/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /General/WindowTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/WindowTest/README.md -------------------------------------------------------------------------------- /General/WindowTest/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /General/WindowTest/application/windowTest.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/WindowTest/application/windowTest.spl -------------------------------------------------------------------------------- /General/WindowTest/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/WindowTest/catalog.json -------------------------------------------------------------------------------- /General/WindowTest/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/WindowTest/info.xml -------------------------------------------------------------------------------- /General/certificate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/General/certificate/README.md -------------------------------------------------------------------------------- /Geospatial/GPXToTuple/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GPXToTuple/.classpath -------------------------------------------------------------------------------- /Geospatial/GPXToTuple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GPXToTuple/.gitignore -------------------------------------------------------------------------------- /Geospatial/GPXToTuple/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GPXToTuple/.project -------------------------------------------------------------------------------- /Geospatial/GPXToTuple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GPXToTuple/README.md -------------------------------------------------------------------------------- /Geospatial/GPXToTuple/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GPXToTuple/catalog.json -------------------------------------------------------------------------------- /Geospatial/GPXToTuple/com.ibm.streamsx.geospatial.sample/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Geospatial/GPXToTuple/data/sample.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GPXToTuple/data/sample.gpx -------------------------------------------------------------------------------- /Geospatial/GPXToTuple/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GPXToTuple/info.xml -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GeofenceMarketing/.classpath -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/.gitignore: -------------------------------------------------------------------------------- 1 | /.toolkitList 2 | -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GeofenceMarketing/.project -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GeofenceMarketing/README.md -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GeofenceMarketing/catalog.json -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/com.ibm.streamsx.geospatial.sample/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/data/fences/malls.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GeofenceMarketing/data/fences/malls.csv -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/data/input/wonderland.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GeofenceMarketing/data/input/wonderland.csv -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/etc/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GeofenceMarketing/etc/map.html -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/etc/marker-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GeofenceMarketing/etc/marker-gold.png -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/etc/marker-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GeofenceMarketing/etc/marker-green.png -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/etc/marker-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GeofenceMarketing/etc/marker-red.png -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/impl/java/src/.temp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Geospatial/GeofenceMarketing/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/GeofenceMarketing/info.xml -------------------------------------------------------------------------------- /Geospatial/HangoutSample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/HangoutSample/.gitignore -------------------------------------------------------------------------------- /Geospatial/HangoutSample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/HangoutSample/.project -------------------------------------------------------------------------------- /Geospatial/HangoutSample/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Geospatial/HangoutSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/HangoutSample/README.md -------------------------------------------------------------------------------- /Geospatial/HangoutSample/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/HangoutSample/catalog.json -------------------------------------------------------------------------------- /Geospatial/HangoutSample/hangoutsample/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Geospatial/HangoutSample/hangoutsample/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/HangoutSample/hangoutsample/Main.spl -------------------------------------------------------------------------------- /Geospatial/HangoutSample/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/HangoutSample/info.xml -------------------------------------------------------------------------------- /Geospatial/MapMatch/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapMatch/.classpath -------------------------------------------------------------------------------- /Geospatial/MapMatch/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapMatch/.project -------------------------------------------------------------------------------- /Geospatial/MapMatch/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Geospatial/MapMatch/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapMatch/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Geospatial/MapMatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapMatch/README.md -------------------------------------------------------------------------------- /Geospatial/MapMatch/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapMatch/catalog.json -------------------------------------------------------------------------------- /Geospatial/MapMatch/com.ibm.streams.mapmatch/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Geospatial/MapMatch/com.ibm.streams.mapmatch/Main.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapMatch/com.ibm.streams.mapmatch/Main.spl -------------------------------------------------------------------------------- /Geospatial/MapMatch/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapMatch/info.xml -------------------------------------------------------------------------------- /Geospatial/MapMatch/opt/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapMatch/opt/html/index.html -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapViewerSample/.classpath -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/.gitignore: -------------------------------------------------------------------------------- 1 | /.apt_generated/ 2 | /.toolkitList 3 | /output 4 | -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapViewerSample/.project -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapViewerSample/README.md -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapViewerSample/catalog.json -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/com.ibm.streamsx.mapviewer.gen/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/com.ibm.streamsx.mapviewer/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/etc/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapViewerSample/etc/map.html -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/etc/marker-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapViewerSample/etc/marker-gold.png -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/etc/marker-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapViewerSample/etc/marker-green.png -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/etc/marker-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapViewerSample/etc/marker-red.png -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/etc/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapViewerSample/etc/warning.png -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/impl/java/bin/.temp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/impl/java/src/.temp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Geospatial/MapViewerSample/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/MapViewerSample/info.xml -------------------------------------------------------------------------------- /Geospatial/OSMPointMapMatchingSample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/OSMPointMapMatchingSample/.classpath -------------------------------------------------------------------------------- /Geospatial/OSMPointMapMatchingSample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/OSMPointMapMatchingSample/.project -------------------------------------------------------------------------------- /Geospatial/OSMPointMapMatchingSample/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /Geospatial/OSMPointMapMatchingSample/.toolkitList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/OSMPointMapMatchingSample/.toolkitList -------------------------------------------------------------------------------- /Geospatial/OSMPointMapMatchingSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/OSMPointMapMatchingSample/README.md -------------------------------------------------------------------------------- /Geospatial/OSMPointMapMatchingSample/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Geospatial/OSMPointMapMatchingSample/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/OSMPointMapMatchingSample/catalog.json -------------------------------------------------------------------------------- /Geospatial/OSMPointMapMatchingSample/data/.gitignore: -------------------------------------------------------------------------------- 1 | /output.txt 2 | -------------------------------------------------------------------------------- /Geospatial/OSMPointMapMatchingSample/etc/bewdley.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/OSMPointMapMatchingSample/etc/bewdley.csv -------------------------------------------------------------------------------- /Geospatial/OSMPointMapMatchingSample/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/OSMPointMapMatchingSample/images/map.png -------------------------------------------------------------------------------- /Geospatial/OSMPointMapMatchingSample/images/pe-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/OSMPointMapMatchingSample/images/pe-host.png -------------------------------------------------------------------------------- /Geospatial/OSMPointMapMatchingSample/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Geospatial/OSMPointMapMatchingSample/info.xml -------------------------------------------------------------------------------- /IoT/ReadEdgentEvents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/IoT/ReadEdgentEvents/README.md -------------------------------------------------------------------------------- /IoT/ReadEdgentEvents/java/StreamingAnalyticsAndEdgent/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /README.md~ 3 | -------------------------------------------------------------------------------- /IoT/ReadEdgentEvents/python/StreamsPythonAndEdgent/.gitignore: -------------------------------------------------------------------------------- 1 | /__pycache__/ 2 | /mysa_creds.py~ 3 | -------------------------------------------------------------------------------- /IoT/ReadEdgentEvents/spl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/IoT/ReadEdgentEvents/spl/README.md -------------------------------------------------------------------------------- /IoT/WeatherStationApp/WeatherStationSimulator/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/IoT/WeatherStationApp/WeatherStationSimulator/.classpath -------------------------------------------------------------------------------- /IoT/WeatherStationApp/WeatherStationSimulator/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /IoT/WeatherStationApp/WeatherStationSimulator/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/IoT/WeatherStationApp/WeatherStationSimulator/.project -------------------------------------------------------------------------------- /IoT/WeatherStationApp/WeatherStationSimulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/IoT/WeatherStationApp/WeatherStationSimulator/README.md -------------------------------------------------------------------------------- /IoT/WeatherStationApp/WeatherStationSimulator/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/IoT/WeatherStationApp/WeatherStationSimulator/build.xml -------------------------------------------------------------------------------- /IoT/WeatherStationApp/img/bluemix-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/IoT/WeatherStationApp/img/bluemix-dashboard.png -------------------------------------------------------------------------------- /IoT/WeatherStationApp/img/dsx-weather-app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/IoT/WeatherStationApp/img/dsx-weather-app.gif -------------------------------------------------------------------------------- /IoT/WeatherStationApp/img/view_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/IoT/WeatherStationApp/img/view_log.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Performance/ParallelParse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Performance/ParallelParse/Makefile -------------------------------------------------------------------------------- /Performance/ParallelParse/ParallelParse.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Performance/ParallelParse/ParallelParse.spl -------------------------------------------------------------------------------- /Performance/ParallelParse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Performance/ParallelParse/README.md -------------------------------------------------------------------------------- /Performance/ParallelParse/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Performance/ParallelParse/catalog.json -------------------------------------------------------------------------------- /Performance/ParallelParse/makedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Performance/ParallelParse/makedata.py -------------------------------------------------------------------------------- /Performance/ParallelParse/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/Performance/ParallelParse/run.py -------------------------------------------------------------------------------- /QuickStart/BusAlerts/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/.classpath -------------------------------------------------------------------------------- /QuickStart/BusAlerts/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/.project -------------------------------------------------------------------------------- /QuickStart/BusAlerts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/README.md -------------------------------------------------------------------------------- /QuickStart/BusAlerts/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/catalog.json -------------------------------------------------------------------------------- /QuickStart/BusAlerts/data/poi.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/data/poi.csv -------------------------------------------------------------------------------- /QuickStart/BusAlerts/data/saved_BusLocations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/data/saved_BusLocations.txt -------------------------------------------------------------------------------- /QuickStart/BusAlerts/img/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/img/graph.png -------------------------------------------------------------------------------- /QuickStart/BusAlerts/img/viewresults.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/img/viewresults.gif -------------------------------------------------------------------------------- /QuickStart/BusAlerts/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/info.xml -------------------------------------------------------------------------------- /QuickStart/BusAlerts/my.name.space/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QuickStart/BusAlerts/my.name.space/BusAlerts_CachedData.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/my.name.space/BusAlerts_CachedData.spl -------------------------------------------------------------------------------- /QuickStart/BusAlerts/my.name.space/BusAlerts_LiveData.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/my.name.space/BusAlerts_LiveData.spl -------------------------------------------------------------------------------- /QuickStart/BusAlerts/my.name.space/ParseNextBusData.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/my.name.space/ParseNextBusData.spl -------------------------------------------------------------------------------- /QuickStart/BusAlerts/sampleinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/BusAlerts/sampleinfo.xml -------------------------------------------------------------------------------- /QuickStart/EventDetectionV2/EventDetection.sab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/EventDetectionV2/EventDetection.sab -------------------------------------------------------------------------------- /QuickStart/EventDetectionV2/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/EventDetectionV2/License.txt -------------------------------------------------------------------------------- /QuickStart/EventDetectionV2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/EventDetectionV2/README.md -------------------------------------------------------------------------------- /QuickStart/EventDetectionV2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/EventDetectionV2/app.js -------------------------------------------------------------------------------- /QuickStart/EventDetectionV2/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/EventDetectionV2/catalog.json -------------------------------------------------------------------------------- /QuickStart/EventDetectionV2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/EventDetectionV2/package.json -------------------------------------------------------------------------------- /QuickStart/EventDetectionV2/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/EventDetectionV2/public/stylesheets/style.css -------------------------------------------------------------------------------- /QuickStart/EventDetectionV2/spl/EventDetection.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/EventDetectionV2/spl/EventDetection.spl -------------------------------------------------------------------------------- /QuickStart/EventDetectionV2/views/body.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/EventDetectionV2/views/body.jade -------------------------------------------------------------------------------- /QuickStart/EventDetectionV2/views/head.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/EventDetectionV2/views/head.jade -------------------------------------------------------------------------------- /QuickStart/EventDetectionV2/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/EventDetectionV2/views/index.jade -------------------------------------------------------------------------------- /QuickStart/NYCTraffic/NYCTrafficSample/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /QuickStart/NYCTraffic/NYCTrafficSample/WebContent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/NYCTraffic/NYCTrafficSample/WebContent/index.js -------------------------------------------------------------------------------- /QuickStart/NYCTraffic/NYCTrafficSample/WebContent/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/NYCTraffic/NYCTrafficSample/WebContent/style.css -------------------------------------------------------------------------------- /QuickStart/NYCTraffic/NYCTrafficSample/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/NYCTraffic/NYCTrafficSample/build.xml -------------------------------------------------------------------------------- /QuickStart/NYCTraffic/NYCTrafficSample/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/NYCTraffic/NYCTrafficSample/manifest.yml -------------------------------------------------------------------------------- /QuickStart/NYCTraffic/NYCTrafficSample/webStarterApp.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/NYCTraffic/NYCTrafficSample/webStarterApp.war -------------------------------------------------------------------------------- /QuickStart/NYCTraffic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/NYCTraffic/README.md -------------------------------------------------------------------------------- /QuickStart/NYCTraffic/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/NYCTraffic/catalog.json -------------------------------------------------------------------------------- /QuickStart/TradesApp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/TradesApp/.classpath -------------------------------------------------------------------------------- /QuickStart/TradesApp/.gitignore: -------------------------------------------------------------------------------- 1 | /.apt_generated/ 2 | /.toolkitList 3 | -------------------------------------------------------------------------------- /QuickStart/TradesApp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/TradesApp/.project -------------------------------------------------------------------------------- /QuickStart/TradesApp/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /QuickStart/TradesApp/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/TradesApp/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /QuickStart/TradesApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/TradesApp/README.md -------------------------------------------------------------------------------- /QuickStart/TradesApp/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QuickStart/TradesApp/application/TradesAppCloud.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/TradesApp/application/TradesAppCloud.spl -------------------------------------------------------------------------------- /QuickStart/TradesApp/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/TradesApp/catalog.json -------------------------------------------------------------------------------- /QuickStart/TradesApp/data/.gitignore: -------------------------------------------------------------------------------- 1 | /tradesSummary.csv 2 | -------------------------------------------------------------------------------- /QuickStart/TradesApp/data/trades.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/TradesApp/data/trades.csv -------------------------------------------------------------------------------- /QuickStart/TradesApp/impl/java/src/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QuickStart/TradesApp/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/TradesApp/info.xml -------------------------------------------------------------------------------- /QuickStart/TradesApp/starterApp/StockTradesStarterApp.sab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/QuickStart/TradesApp/starterApp/StockTradesStarterApp.sab -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/README.md -------------------------------------------------------------------------------- /ReadAndStoreData/ApacheNifi/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/ApacheNifi/.classpath -------------------------------------------------------------------------------- /ReadAndStoreData/ApacheNifi/.gitignore: -------------------------------------------------------------------------------- 1 | .toolkitList 2 | -------------------------------------------------------------------------------- /ReadAndStoreData/ApacheNifi/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/ApacheNifi/.project -------------------------------------------------------------------------------- /ReadAndStoreData/ApacheNifi/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /ReadAndStoreData/ApacheNifi/NifiSample.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/ApacheNifi/NifiSample.spl -------------------------------------------------------------------------------- /ReadAndStoreData/ApacheNifi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/ApacheNifi/README.md -------------------------------------------------------------------------------- /ReadAndStoreData/ApacheNifi/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/ApacheNifi/catalog.json -------------------------------------------------------------------------------- /ReadAndStoreData/ApacheNifi/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReadAndStoreData/ApacheNifi/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/ApacheNifi/info.xml -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/DbLoader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/DbLoader/Makefile -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/DbLoader/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/DbLoader/README -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/DbLoader/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/DbLoader/catalog.json -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/DbLoader/com.ibm.streamsx.db.dbloader/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/DbLoader/config/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/DbLoader/config/config.cfg -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/DbLoader/config/configure.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/DbLoader/config/configure.pl -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/DbLoader/document/html/dita.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/DbLoader/document/html/dita.list -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/DbLoader/document/html/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/DbLoader/document/html/toc.html -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/DbLoader/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/DbLoader/info.xml -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/JDBCForBluemix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/JDBCForBluemix/README.md -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/JDBCForBluemix/WeatherAnalysis/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/JDBCForBluemix/WeatherAnalysis/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/JDBCForBluemix/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/JDBCForBluemix/catalog.json -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/TeradataODBC/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/TeradataODBC/.project -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/TeradataODBC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/TeradataODBC/Makefile -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/TeradataODBC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/TeradataODBC/README -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/TeradataODBC/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/TeradataODBC/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/TeradataODBC/catalog.json -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/TeradataODBC/etc/connections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/TeradataODBC/etc/connections.xml -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/TeradataODBC/odbc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/TeradataODBC/odbc.ini -------------------------------------------------------------------------------- /ReadAndStoreData/Databases/TeradataODBC/odbcinst.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/Databases/TeradataODBC/odbcinst.ini -------------------------------------------------------------------------------- /ReadAndStoreData/RESTEndpointsSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/RESTEndpointsSample/README.md -------------------------------------------------------------------------------- /ReadAndStoreData/RESTEndpointsSample/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/RESTEndpointsSample/catalog.json -------------------------------------------------------------------------------- /ReadAndStoreData/RESTEndpointsSample/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/RESTEndpointsSample/info.xml -------------------------------------------------------------------------------- /ReadAndStoreData/RESTEndpointsSample/sample/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReadAndStoreData/RESTEndpointsSample/sample/Types.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/RESTEndpointsSample/sample/Types.spl -------------------------------------------------------------------------------- /ReadAndStoreData/RESTEndpointsSample/sample_client.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/RESTEndpointsSample/sample_client.ipynb -------------------------------------------------------------------------------- /ReadAndStoreData/TwitterSmackdown/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/TwitterSmackdown/.classpath -------------------------------------------------------------------------------- /ReadAndStoreData/TwitterSmackdown/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/TwitterSmackdown/.gitignore -------------------------------------------------------------------------------- /ReadAndStoreData/TwitterSmackdown/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/TwitterSmackdown/.project -------------------------------------------------------------------------------- /ReadAndStoreData/TwitterSmackdown/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /ReadAndStoreData/TwitterSmackdown/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/TwitterSmackdown/Makefile -------------------------------------------------------------------------------- /ReadAndStoreData/TwitterSmackdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/TwitterSmackdown/README.md -------------------------------------------------------------------------------- /ReadAndStoreData/TwitterSmackdown/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/TwitterSmackdown/catalog.json -------------------------------------------------------------------------------- /ReadAndStoreData/TwitterSmackdown/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/TwitterSmackdown/info.xml -------------------------------------------------------------------------------- /ReadAndStoreData/TwitterSmackdown/sample/Smackdown.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/TwitterSmackdown/sample/Smackdown.spl -------------------------------------------------------------------------------- /ReadAndStoreData/TwitterSmackdown/sample/TwitterStream.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/ReadAndStoreData/TwitterSmackdown/sample/TwitterStream.spl -------------------------------------------------------------------------------- /StreamsFlows/AggregateExamples/Aggregation_examples.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/AggregateExamples/Aggregation_examples.stp -------------------------------------------------------------------------------- /StreamsFlows/AggregateExamples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/AggregateExamples/README.md -------------------------------------------------------------------------------- /StreamsFlows/AggregateExamples/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/AggregateExamples/catalog.json -------------------------------------------------------------------------------- /StreamsFlows/AggregateExamples/sample_output/TotalSales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/AggregateExamples/sample_output/TotalSales.csv -------------------------------------------------------------------------------- /StreamsFlows/ForecastWithR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/ForecastWithR/README.md -------------------------------------------------------------------------------- /StreamsFlows/IoT_TimeBasedBilling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/IoT_TimeBasedBilling/README.md -------------------------------------------------------------------------------- /StreamsFlows/IoT_TimeBasedBilling/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/IoT_TimeBasedBilling/catalog.json -------------------------------------------------------------------------------- /StreamsFlows/IoT_TimeBasedBilling/db2/customers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/IoT_TimeBasedBilling/db2/customers.csv -------------------------------------------------------------------------------- /StreamsFlows/IoT_TimeBasedBilling/db2/devices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/IoT_TimeBasedBilling/db2/devices.csv -------------------------------------------------------------------------------- /StreamsFlows/IoT_TimeBasedBilling/db2/utility.ddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/IoT_TimeBasedBilling/db2/utility.ddl -------------------------------------------------------------------------------- /StreamsFlows/IoT_TimeBasedBilling/images/db2-creds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/IoT_TimeBasedBilling/images/db2-creds.png -------------------------------------------------------------------------------- /StreamsFlows/IoT_TimeBasedBilling/images/db2-load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/IoT_TimeBasedBilling/images/db2-load.png -------------------------------------------------------------------------------- /StreamsFlows/IoT_TimeBasedBilling/images/db2-manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/IoT_TimeBasedBilling/images/db2-manage.png -------------------------------------------------------------------------------- /StreamsFlows/IoT_TimeBasedBilling/images/db2-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/IoT_TimeBasedBilling/images/db2-python.png -------------------------------------------------------------------------------- /StreamsFlows/IoT_TimeBasedBilling/images/db2-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/IoT_TimeBasedBilling/images/db2-run.png -------------------------------------------------------------------------------- /StreamsFlows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/StreamsFlows/README.md -------------------------------------------------------------------------------- /TextAnalysis/BigInsightsStarterKitApp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/BigInsightsStarterKitApp/.classpath -------------------------------------------------------------------------------- /TextAnalysis/BigInsightsStarterKitApp/.gitignore: -------------------------------------------------------------------------------- 1 | /.toolkitList 2 | -------------------------------------------------------------------------------- /TextAnalysis/BigInsightsStarterKitApp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/BigInsightsStarterKitApp/.project -------------------------------------------------------------------------------- /TextAnalysis/BigInsightsStarterKitApp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/BigInsightsStarterKitApp/Makefile -------------------------------------------------------------------------------- /TextAnalysis/BigInsightsStarterKitApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/BigInsightsStarterKitApp/README.md -------------------------------------------------------------------------------- /TextAnalysis/BigInsightsStarterKitApp/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextAnalysis/BigInsightsStarterKitApp/application/Types.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/BigInsightsStarterKitApp/application/Types.spl -------------------------------------------------------------------------------- /TextAnalysis/BigInsightsStarterKitApp/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/BigInsightsStarterKitApp/catalog.json -------------------------------------------------------------------------------- /TextAnalysis/BigInsightsStarterKitApp/etc/productSentimentExtractor/src/biadmin_biadmin_1456446145518__Export/Brand.dict: -------------------------------------------------------------------------------- 1 | Trailchef 2 | Firefly 3 | -------------------------------------------------------------------------------- /TextAnalysis/BigInsightsStarterKitApp/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/BigInsightsStarterKitApp/info.xml -------------------------------------------------------------------------------- /TextAnalysis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/Makefile -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsDemo/.classpath -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/.gitignore: -------------------------------------------------------------------------------- 1 | /.toolkitList 2 | /.metadata/ 3 | /impl/ 4 | -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsDemo/.project -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsDemo/README.md -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/application/WebOutput.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsDemo/application/WebOutput.spl -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsDemo/catalog.json -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/data/input/bigdata_blog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsDemo/data/input/bigdata_blog.txt -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/data/input/ibm_spark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsDemo/data/input/ibm_spark.txt -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/data/input/ibm_twc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsDemo/data/input/ibm_twc.txt -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/data/new_offerings.txt: -------------------------------------------------------------------------------- 1 | World of Watson 2 | Spark 3 | -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/data/updates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/etc/Offerings_dict_initial.dict: -------------------------------------------------------------------------------- 1 | Streams 2 | Analytics 3 | -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/etc/mentions_extractor/src/biblumix_biblumix_1456168144115__Export/Organizations.dict: -------------------------------------------------------------------------------- 1 | Apache 2 | IBM 3 | -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/etc/updated_mentions_extractor/src/tauser_streams_1473700723840__Export/Organizations.dict: -------------------------------------------------------------------------------- 1 | Apache 2 | IBM 3 | -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/etc/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsDemo/etc/web/index.html -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/etc/web/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsDemo/etc/web/table.js -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsDemo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsDemo/info.xml -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsToGo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsToGo/.classpath -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsToGo/.gitignore: -------------------------------------------------------------------------------- 1 | /.toolkitList 2 | /bin/ 3 | -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsToGo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsToGo/.project -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsToGo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsToGo/Makefile -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsToGo/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsToGo/catalog.json -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsToGo/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsToGo/data/.gitignore -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsToGo/data/aliasout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsToGo/data/aliasout.txt -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsToGo/data/soccer_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsToGo/data/soccer_in.txt -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsToGo/etc/aliases.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsToGo/etc/aliases.csv -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsToGo/etc/stopwords.dict: -------------------------------------------------------------------------------- 1 | " 2 | . 3 | ; 4 | _ 5 | , 6 | - -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsToGo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsToGo/info.xml -------------------------------------------------------------------------------- /TextAnalysis/TextAnalyticsToGo/runall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/TextAnalysis/TextAnalyticsToGo/runall.sh -------------------------------------------------------------------------------- /categorykey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/categorykey.txt -------------------------------------------------------------------------------- /extSamples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/extSamples.json -------------------------------------------------------------------------------- /generate-full-catalog-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/generate-full-catalog-json.py -------------------------------------------------------------------------------- /timeseries/.gitignore: -------------------------------------------------------------------------------- 1 | output -------------------------------------------------------------------------------- /timeseries/AnomalyDetectorSample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AnomalyDetectorSample/.classpath -------------------------------------------------------------------------------- /timeseries/AnomalyDetectorSample/.gitignore: -------------------------------------------------------------------------------- 1 | /.apt_generated/ 2 | /.toolkitList 3 | -------------------------------------------------------------------------------- /timeseries/AnomalyDetectorSample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AnomalyDetectorSample/.project -------------------------------------------------------------------------------- /timeseries/AnomalyDetectorSample/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /timeseries/AnomalyDetectorSample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AnomalyDetectorSample/Makefile -------------------------------------------------------------------------------- /timeseries/AnomalyDetectorSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AnomalyDetectorSample/README.md -------------------------------------------------------------------------------- /timeseries/AnomalyDetectorSample/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timeseries/AnomalyDetectorSample/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AnomalyDetectorSample/catalog.json -------------------------------------------------------------------------------- /timeseries/AnomalyDetectorSample/data/detectedAnomalies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AnomalyDetectorSample/data/detectedAnomalies.txt -------------------------------------------------------------------------------- /timeseries/AnomalyDetectorSample/data/pktsPerSec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AnomalyDetectorSample/data/pktsPerSec.txt -------------------------------------------------------------------------------- /timeseries/AnomalyDetectorSample/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AnomalyDetectorSample/info.xml -------------------------------------------------------------------------------- /timeseries/AutoForecasterSamples/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AutoForecasterSamples/.classpath -------------------------------------------------------------------------------- /timeseries/AutoForecasterSamples/.gitignore: -------------------------------------------------------------------------------- 1 | /.apt_generated/ 2 | /.toolkitList 3 | -------------------------------------------------------------------------------- /timeseries/AutoForecasterSamples/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AutoForecasterSamples/.project -------------------------------------------------------------------------------- /timeseries/AutoForecasterSamples/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /timeseries/AutoForecasterSamples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AutoForecasterSamples/Makefile -------------------------------------------------------------------------------- /timeseries/AutoForecasterSamples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AutoForecasterSamples/README.md -------------------------------------------------------------------------------- /timeseries/AutoForecasterSamples/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timeseries/AutoForecasterSamples/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AutoForecasterSamples/catalog.json -------------------------------------------------------------------------------- /timeseries/AutoForecasterSamples/data/netload.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AutoForecasterSamples/data/netload.out -------------------------------------------------------------------------------- /timeseries/AutoForecasterSamples/data/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AutoForecasterSamples/data/result.txt -------------------------------------------------------------------------------- /timeseries/AutoForecasterSamples/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/AutoForecasterSamples/info.xml -------------------------------------------------------------------------------- /timeseries/DSPFilterBandpassExample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/DSPFilterBandpassExample/.classpath -------------------------------------------------------------------------------- /timeseries/DSPFilterBandpassExample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/DSPFilterBandpassExample/.project -------------------------------------------------------------------------------- /timeseries/DSPFilterBandpassExample/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /timeseries/DSPFilterBandpassExample/FilterExample/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timeseries/DSPFilterBandpassExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/DSPFilterBandpassExample/Makefile -------------------------------------------------------------------------------- /timeseries/DSPFilterBandpassExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/DSPFilterBandpassExample/README.md -------------------------------------------------------------------------------- /timeseries/DSPFilterBandpassExample/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/DSPFilterBandpassExample/catalog.json -------------------------------------------------------------------------------- /timeseries/DSPFilterBandpassExample/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/DSPFilterBandpassExample/info.xml -------------------------------------------------------------------------------- /timeseries/DSPFilterFiniteSample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/DSPFilterFiniteSample/.classpath -------------------------------------------------------------------------------- /timeseries/DSPFilterFiniteSample/.gitignore: -------------------------------------------------------------------------------- 1 | /.apt_generated/ 2 | /.toolkitList 3 | -------------------------------------------------------------------------------- /timeseries/DSPFilterFiniteSample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/DSPFilterFiniteSample/.project -------------------------------------------------------------------------------- /timeseries/DSPFilterFiniteSample/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /timeseries/DSPFilterFiniteSample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/DSPFilterFiniteSample/Makefile -------------------------------------------------------------------------------- /timeseries/DSPFilterFiniteSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/DSPFilterFiniteSample/README.md -------------------------------------------------------------------------------- /timeseries/DSPFilterFiniteSample/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timeseries/DSPFilterFiniteSample/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/DSPFilterFiniteSample/catalog.json -------------------------------------------------------------------------------- /timeseries/DSPFilterFiniteSample/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/DSPFilterFiniteSample/info.xml -------------------------------------------------------------------------------- /timeseries/KMeansClusteringControlSignalSample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/KMeansClusteringControlSignalSample/.classpath -------------------------------------------------------------------------------- /timeseries/KMeansClusteringControlSignalSample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/KMeansClusteringControlSignalSample/.project -------------------------------------------------------------------------------- /timeseries/KMeansClusteringControlSignalSample/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /timeseries/KMeansClusteringControlSignalSample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/KMeansClusteringControlSignalSample/Makefile -------------------------------------------------------------------------------- /timeseries/KMeansClusteringControlSignalSample/com.ibm.streamsx.timeseries.sample/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timeseries/KMeansClusteringControlSignalSample/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/KMeansClusteringControlSignalSample/info.xml -------------------------------------------------------------------------------- /timeseries/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/Makefile -------------------------------------------------------------------------------- /timeseries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/README.md -------------------------------------------------------------------------------- /timeseries/STD2Samples/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/.classpath -------------------------------------------------------------------------------- /timeseries/STD2Samples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/.gitignore -------------------------------------------------------------------------------- /timeseries/STD2Samples/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/.project -------------------------------------------------------------------------------- /timeseries/STD2Samples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/Makefile -------------------------------------------------------------------------------- /timeseries/STD2Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/README.md -------------------------------------------------------------------------------- /timeseries/STD2Samples/application/.namespace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timeseries/STD2Samples/application/STD2Anomaly.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/application/STD2Anomaly.spl -------------------------------------------------------------------------------- /timeseries/STD2Samples/application/STD2Basic.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/application/STD2Basic.spl -------------------------------------------------------------------------------- /timeseries/STD2Samples/application/STD2FiniteLength.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/application/STD2FiniteLength.spl -------------------------------------------------------------------------------- /timeseries/STD2Samples/application/STD2Random.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/application/STD2Random.spl -------------------------------------------------------------------------------- /timeseries/STD2Samples/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/build.xml -------------------------------------------------------------------------------- /timeseries/STD2Samples/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/catalog.json -------------------------------------------------------------------------------- /timeseries/STD2Samples/data/anomaly_input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/data/anomaly_input.csv -------------------------------------------------------------------------------- /timeseries/STD2Samples/data/simple_input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/data/simple_input.csv -------------------------------------------------------------------------------- /timeseries/STD2Samples/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/STD2Samples/info.xml -------------------------------------------------------------------------------- /timeseries/images/ad11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/images/ad11.png -------------------------------------------------------------------------------- /timeseries/images/ad12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/images/ad12.png -------------------------------------------------------------------------------- /timeseries/images/af2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/timeseries/images/af2.gif -------------------------------------------------------------------------------- /updateCatalogDB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBMStreams/samples/HEAD/updateCatalogDB.sh --------------------------------------------------------------------------------