Inheritance: IRegionData
Example #1
0
 public NullRegionData(string connectionString, string realm)
 {
     if (Instance == null)
     {
         Instance = this;
     }
 }
 public NullRegionData(string connectionString, string realm)
 {
     if (Instance == null)
     {
         Instance = this;
     }
     //Console.WriteLine("[XXX] NullRegionData constructor");
 }
Example #3
0
        public NullRegionData(string connectionString, string realm)
        {
//            m_log.DebugFormat(
//                "[NULL REGION DATA]: Constructor got connectionString {0}, realm {1}", connectionString, realm);

            // The !static connection string is a hack so that regression tests can use this module without a high degree of fragility
            // in having to deal with the static reference in the once-loaded NullRegionData class.
            //
            // In standalone operation, we have to use only one instance of this class since the login service and
            // simulator have no other way of using a common data store.
            if (connectionString == "!static")
                m_useStaticInstance = false;
            else if (Instance == null)
                Instance = this;
        }
Example #4
0
        public NullRegionData(string connectionString, string realm)
        {
            //            m_log.DebugFormat(
            //                "[NULL REGION DATA]: Constructor got connectionString {0}, realm {1}", connectionString, realm);

            // The !static connection string is a hack so that regression tests can use this module without a high degree of fragility
            // in having to deal with the static reference in the once-loaded NullRegionData class.
            //
            // In standalone operation, we have to use only one instance of this class since the login service and
            // simulator have no other way of using a common data store.
            if (connectionString == "!static")
            {
                m_useStaticInstance = false;
            }
            else if (Instance == null)
            {
                Instance = this;
            }
        }
Example #5
0
 public NullRegionData(string connectionString, string realm)
 {
     if (Instance == null)
         Instance = this;
     //Console.WriteLine("[XXX] NullRegionData constructor");
 }