using System.IO; using Christie_net.datagear.dg; namespace Christie_net.datagear.command { public class RemoteTakeCommand : Command{ public RemoteTakeCommand(CommandBuilder cb) : base(cb) { this.dg = new MessagePackDataGear(this.clazz); } public override void Execute() { new CommandBuilder().Init(CommandType.REPLY).Connection(connection).Key(key).Dg(dg).Build().Execute(); } public override MemoryStream Convert() { throw new System.NotImplementedException(); } } }