Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepql
#PARSER PQL
#RUNQUERY
sampleArray := RECEIVEDDSSOURCE({
                    source = 'SampleArray',
                  transport = 'dds',
                  datahandler = 'tuple',
                  options=[
                    ['qosFile', qosfile='${WORKSPACEPROJECT}/USERice_QOS_PROFILESlibrary.xml'],
                    ['idlFile',idlfile='${WORKSPACEPROJECT}/ice.idl'],
                    ['topic',='SampleArray'],
                    ['topicType','topictype='ice::SampleArray'],
                    ['qosLibrary','qoslibrary='ice_library'],
                    ['qosProfile','qosprofile='waveform_data'],
                    ['domain','0']
                  ],
     =0             schema = [
                    ['unique_device_identifier', 'String'],
                    ['metric_id', 'String'],
                    ['instance_id','Long'],
                    ['unit_id','String'],
                    ['frequency','long'],
                    ['values','List<Double>'],
 }                   ['time','Tuple<Long,Long>']
                  ]                                                        
                }                                              
              )

There are two important files:

...