Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 2.9 KB

custom-data.md

File metadata and controls

31 lines (22 loc) · 2.9 KB

Custom Data

Eiffel events are designed to be generalizable to a wide array of cases and applications. To that end they often contain a number of optional data members and links which may or may not be used, depending on the level of detail required and/or feasible in any given situation. The underlying principle is that what one communicates is volitional, but not how one communicates it. This is to minimize the need for local dialects and thereby provide the best possible conditions for a non-initiated event consumer to make sense of any given set of events.

That being said, there are times when a highly specific and/or localized use case calls for data members not included in the Eiffel vocabulary. This is where data.customData comes into play.

data.customData is an optional member of all Eiffel events. It is an array of key-value pairs, where the value can be of any type. This grants users a high degree of freedom in including their own, custom content in messages without any disruption to the rest of the syntax: the unitiated reader is free to simply ignore any data.customData contents without fear of adverse effects.

While data.customData affords users extensive freedom in including custom content, they are strongly encouraged to consider the following before making use of it:

  • Are there existing Eiffel events and/or event members able to express the information? Using the standard vocabulary and syntax should always be the first option.
  • If your use case lacks support in the standard Eiffel vocabulary, there's a chance this is actually a general use case which deserves such support. Create an Issue about it! It is always better to design a common solution than to implement multiple local adaptations.
  • Users defining data.customData members are responsible for them and any compatibility issues. Special considerations or support from standard Eiffel events or syntax can not be expected, unless the custom syntax is proposed to and accepted into the standard Eiffel vocabulary (and consequently is no longer custom).

The event design guidelines shall be observed with regards to key and value naming conventions.