Domain Items
Subscriber
RbO.Subscriber — Type.struct Subscriber <: DomainObjectReturns a Subscriber. It is preferred to use createSubscriber.
Example
julia> using RbO
julia> daisy = Subscriber("Daisy")
Subscriber("13648859580074120351", "Daisy", "", MEAN_CALCULATOR::SubscriberType = 0)SubscriberType
RbO.SubscriberType — Type.SubscriberTypeValues
- 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)
 
Publisher
RbO.Publisher — Type.struct Publisher <: DomainObjectReturns 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[])PublisherType
RbO.PublisherType — Type.PublisherTypeValues
- NEWSPAPER
 - MAGAZINE
 - SOCIAL_MEDIA
 
Message
RbO.Message — Type.struct Message <: InformationReturns 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])