跳到主要内容

health.end

声明

public void end()

参数

参数名描述

作用

该接口用来关闭服务器健康检查监控

使用方式

HealthD.gs

import gs.lang.*;
import gs.util.*;
import pkg.gtest;

import pkg.health;

void create()
{
load_static(health, this_domain());
}

void destruct()
{
health.end();
}

public mixed start()
{
health.start();
return "success";
}

返回文档