view datagear/command/RemoteTakeCommand.cs @ 20:3aaa77e12493

update
author riono <e165729@ie.u-ryukyu.ac.jp>
date Tue, 01 Dec 2020 20:23:09 +0900
parents 4a3115ba746d
children 9217d14cc220
line wrap: on
line source

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<object>(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();
    }
}
}