2014-04-26 09:18:56 +00:00
|
|
|
package CustomerDB
|
|
|
|
|
2014-10-19 17:19:11 +00:00
|
|
|
import (
|
|
|
|
"github.com/SommerEngineering/Ocean/Log"
|
|
|
|
LM "github.com/SommerEngineering/Ocean/Log/Meta"
|
|
|
|
)
|
2014-04-26 09:18:56 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Please do not use this type. It is an internal type of Ocean to provide a shutdown function!
|
|
|
|
*/
|
|
|
|
type ShutdownFunction struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
This function is called if the Ocean server is shutting down.
|
|
|
|
*/
|
|
|
|
func (a ShutdownFunction) Shutdown() {
|
|
|
|
Log.LogShort(senderName, LM.CategoryAPP, LM.LevelWARN, LM.MessageNameSHUTDOWN, `Close now the customer database connection.`)
|
|
|
|
}
|