* Get property using the provided name. * @param name property name. * @param value value passed in by reference * @return result of getting property. */
| 51 | * @return result of getting property. |
| 52 | */ |
| 53 | std::shared_ptr<Connectable> getProcessor() const { |
| 54 | return processor_; |
| 55 | } |
| 56 | |
| 57 | void yield() override { |
| 58 | processor_->yield(); |
no outgoing calls