/*----------------------------------------------- *本文件由代码生成器自动生成, *千万不要修改本文件的任何代码, *修改的的任何代码都会被覆盖掉! --------------------------------------------------*/ using System.IO; using System; using System.Collections.Generic; using System.Linq; using System.Text; using Pomelo.DotNetClient; namespace pomelo.area { public class UndergroundPlaceHandler { private PomeloClient _socket; public BossRefrushTimeResponse lastBossRefrushTimeResponse { get { return _socket.GetLastResponse(); } } static UndergroundPlaceHandler() { EventTypes.RegistPushType("area.undergroundPlacePush.bossRefrushTimePush", typeof(BossRefrushTimePush)); EventTypes.RegistRequestType("area.undergroundPlaceHandler.bossRefrushTimeRequest", typeof(BossRefrushTimeRequest), typeof(BossRefrushTimeResponse)); } public UndergroundPlaceHandler(PomeloClient socket) { this._socket = socket; } public void bossRefrushTimeRequest(int mapID,Action cb,object option = null) { var request = new BossRefrushTimeRequest(); request.mapID= mapID; _socket.request(request, (object msg, out int s2c_code, out string s2c_msg) => { var rsp = msg as BossRefrushTimeResponse; s2c_code = rsp.s2c_code; s2c_msg = rsp.s2c_msg; return s2c_code == 200; }, cb, option); } public void onBossRefrushTimePush(Action cb) { _socket.listen_once(cb); } } }