Qare Internals
    SQL Tables
        Account
        appData
        appTable
        Applications
        Inbox
        KeyPair
        localPrivileges
        message
        pendingMessage
        privilege
        project
        registerInfo
        RegisterPending
        remoteAccount
        session
        System
        user
        userDelegations
    Schema
    Plugins
    API
 Site Map
 
pendingMessage Table
When a message send to a system which is not up, these are stored here. A background task takes care of sending the message in future at diffrent intrevals.
 
 QareApplications
        AppDir
        ChangePassword
        Count
        CreateAccount
        Delegation
        DelegationDisplay
        DeleteRemote
        HelloWorld
        Inbox
        Login
        Logout
        Pending
        Ping
        Register
        RemoteAccount
        UserGroups
 



FIELD
TYPE
DESCRIPTION
sessionId
bignit(20) unsigned (PRI)
The session identifier, session which is associated with the message.
pendingId
bignit(20) unsigned (PRI)(auto_increment)
The row identifier
message
text
The message to be sent.
systemId
int(10) unsigned (PRI)
The system identifier, system where message has to be sent
mailToId
int(10) unsigned
The mailto id of the remote system if exists.
lastSend
tinyint(4)
0 indicates that the session is not closed after the message is sent and 1 indicates the opposite. This will close the channel. Some applications dosen't need the responses so closing the channel, if not needed is always the best choice.