Is a CBPeripheral tied to an instance of CBCentralManager?

Suppose I have two instances of CBCentralManager:

let manager1 = CBCentralManager(delegate: delegate1, queue: nil)
let manager2 = CBCentralManager(delegate: delegate2, queue: nil)

If I scan for peripherals using manager1, can I take the CBPeripheral that it gives me and connect to it with manager2?

Frank

Is a CBPeripheral tied to an instance of CBCentralManager?
 
 
Q