| 32 | namespace master { |
| 33 | |
| 34 | Framework::Framework( |
| 35 | Master* const master, |
| 36 | const Flags& masterFlags, |
| 37 | const FrameworkInfo& info, |
| 38 | OfferConstraints&& offerConstraints, |
| 39 | const process::UPID& pid, |
| 40 | const Owned<ObjectApprovers>& approvers, |
| 41 | const process::Time& time) |
| 42 | : Framework( |
| 43 | master, |
| 44 | masterFlags, |
| 45 | info, |
| 46 | std::move(offerConstraints), |
| 47 | CONNECTED, |
| 48 | true, |
| 49 | approvers, |
| 50 | time) |
| 51 | { |
| 52 | pid_ = pid; |
| 53 | } |
| 54 | |
| 55 | |
| 56 | Framework::Framework( |