DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T V

⟦560aa293a⟧ TextFile

    Length: 3073 (0xc01)
    Types: TextFile
    Names: »V«

Derivation

└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13
    └─ ⟦124ff5788⟧ »DATA« 
        └─⟦this⟧ 
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 
└─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16
    └─ ⟦6f12a12be⟧ »DATA« 
        └─⟦this⟧ 
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Method;
package Message is


    type Object is private;

    type Class is (Registration,  
                   Unregistration,  
                   Query,  
                   Request,  
                   Notification,  
                   Forward,  
                   Publication,  
                   Unpublication,  
                   Subscription,  
                   Unsubscription);


    function Create (Class : Message.Class;
                     Addressee : Natural;
                     Sender : Natural;
                     Method : Standard.Method.Object) return Message.Object;

    function Create (Class : Message.Class;
                     Addressee : Natural;
                     Sender : Natural;
                     Method : String;
                     Parameter_Name : String;
                     Parameter_Class : String;
                     Parameter_Value : String) return Message.Object;

    function Create (Class : Message.Class;
                     Addressee : Natural;
                     Sender : Natural;
                     Method : String;
                     Parameter1_Name : String;
                     Parameter1_Class : String;
                     Parameter1_Value : String;
                     Parameter2_Name : String;
                     Parameter2_Class : String;
                     Parameter2_Value : String) return Message.Object;


    function Create (Class : Message.Class;
                     Addressee : Natural;
                     Sender : Natural;
                     Method : String;
                     Parameter1_Name : String;
                     Parameter1_Class : String;
                     Parameter1_Value : String;
                     Parameter2_Name : String;
                     Parameter2_Class : String;
                     Parameter2_Value : String;
                     Parameter3_Name : String;
                     Parameter3_Class : String;
                     Parameter3_Value : String) return Message.Object;


    procedure Set_Class (Message : in out Standard.Message.Object;
                         Class : Standard.Message.Class);

    procedure Set_Addressee (Message : in out Standard.Message.Object;
                             Addressee : Natural);

    procedure Set_Sender
                 (Message : in out Standard.Message.Object; Sender : Natural);



    function Get_Class (Message : Standard.Message.Object) return Class;

    function Get_Addressee (Message : Standard.Message.Object) return Natural;

    function Get_Sender (Message : Standard.Message.Object) return Natural;

    function Get_Method (Message : Standard.Message.Object)
                        return Method.Object;


    function Image (Message : Standard.Message.Object) return String;

    function Value (The_String : String) return Message.Object;


private

    type Object is
        record
            Class : Message.Class;
            Addressee : Natural;
            Sender : Natural;
            Method : Standard.Method.Object;
        end record;

end Message;