Domain items

Domain Items

Subscriber

RbO.SubscriberType.
struct Subscriber <: DomainObject

Returns a Subscriber. It is preferred to use createSubscriber.

Example

julia> using RbO

julia> daisy = Subscriber("Daisy")
Subscriber("13648859580074120351", "Daisy", "", MEAN_CALCULATOR::SubscriberType = 0)
source

SubscriberType

SubscriberType

Values

  • STD_CALCULATOR (caluclates the standard deviation of set of data, default value)
  • MEAN_CALCULATOR (caluclates the mean of set of data)
  • PLOTTER (keeps the dataset for plotting)
source

Publisher

RbO.PublisherType.
struct Publisher <: DomainObject

Returns a Publisher object. It is preferred to use createPublisher.

Example

julia> using RbO

julia> chronicals = Publisher("The Duck City Chornicals", NEWSPAPER, Subscriber[])
Publisher("3207093602141662250", "The Duck City Chornicals", NEWSPAPER::PublisherType = 0, Subscriber[])
source

PublisherType

PublisherType

Values

  • NEWSPAPER
  • MAGAZINE
  • SOCIAL_MEDIA
source

Message

RbO.MessageType.
struct Message <: Information

Returns a Message object. It is preferred to use createMessage.

Example

julia> using RbO

julia> message = Message( "Weather station", "Temperatures", [10.9, 12, 10.5, 12.7, 10.2] )
Message("6473886582379654438", "Weather station", "Temperatures", [10.9, 12.0, 10.5, 12.7, 10.2])
source