Esempio n. 1
0
 public LogBaseMessage()
 {
     schema       = 0;
     log          = 0;
     creationtime = new DateTime();
     hardcode     = 0;
     msgtype      = 0;
     message1     = "";
     message2     = "";
 }
Esempio n. 2
0
 public LogBaseMessage(int s, int l, DateTime c, int h, LOG_QUEUE_MSG_TYPE m, String m1, String m2, List <LogBaseColumn> lst)
 {
     schema       = s;
     log          = l;
     creationtime = c;
     hardcode     = h;
     msgtype      = m;
     message1     = m1;
     message2     = m2;
     list         = lst;
 }
Esempio n. 3
0
 public void setMsgType(LOG_QUEUE_MSG_TYPE m)
 {
     msgtype = m;
 }