Deploying and Managing Apama Applications > Event Correlator Utilities Reference > Event file format > Event representation
Event representation
A single event is identified by the event type name and the values of all fields as defined by that type. Event type names must be ‘fully-qualified’ by prefixing the package name into which the corresponding event type was injected, unless the event was injected into the default package
Each event is given on a separate line, separated by a new-line character. Only single-line comments are allowed. Start each comment line with / / or #. Any blank lines are ignored.
For example, the following:

// This is an event file
// that contains some sample events.
// Here are three stock price events:
StockPrice("XRX", 11.1)
StockPrice("IBM",130.6)
StockPrice("MSFT", 70.5)
are three valid events given the following event type definition (injected into the default package):

event StockPrice {
  string stockSymbol;
  float stockValue;
}
If the above events were saved in an .evt file, engine_send would send each event in turn, as soon as the previous event finished transmission. This behavior can optionally be modified in two ways: specifying that events should be sent in a ‘batch’ and specifying timing data forcing events to be sent at specific time intervals.
Copyright © 2013 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or Terracotta Inc., San Francisco, CA, USA, and/or Software AG (Canada) Inc., Cambridge, Ontario, Canada, and/or, Software AG (UK) Ltd., Derby, United Kingdom, and/or Software A.G. (Israel) Ltd., Or-Yehuda, Israel and/or their licensors.