| 27 | } |
| 28 | |
| 29 | Reference<Plan> ExtConnection::wrapOperationPlan(Reference<Plan> plan, |
| 30 | bool isReadOnly, |
| 31 | Reference<UnboundCollectionContext> cx) { |
| 32 | return Reference<Plan>(new NonIsolatedPlan(plan, isReadOnly, cx, docLayer->database, mm)); |
| 33 | } |
| 34 | |
| 35 | Reference<Plan> ExtConnection::isolatedWrapOperationPlan(Reference<Plan> plan) { |
| 36 | return isolatedWrapOperationPlan(plan, options.timeoutMillies, options.retryLimit); |
no outgoing calls
no test coverage detected