comparison OrthancServer/Scheduler/StorePeerCommand.h @ 1009:26642cecd36d lua-scripting

clearer job interface
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 09 Jul 2014 16:11:44 +0200
parents 871c49c9b11d
children 0561f2087cc9
comparison
equal deleted inserted replaced
1008:187ed107a59f 1009:26642cecd36d
45 OrthancPeerParameters peer_; 45 OrthancPeerParameters peer_;
46 46
47 public: 47 public:
48 StorePeerCommand(ServerContext& context, 48 StorePeerCommand(ServerContext& context,
49 const OrthancPeerParameters& peer); 49 const OrthancPeerParameters& peer);
50 50
51 bool Apply(ListOfStrings& outputs, 51 virtual bool Apply(ListOfStrings& outputs,
52 const ListOfStrings& inputs); 52 const ListOfStrings& inputs);
53
54 bool SendOutputsToSink() const
55 {
56 return false;
57 }
58 }; 53 };
59 } 54 }