연결 관리

연결 시작

근처 기기가 발견되면 발견자가 연결을 시작할 수 있습니다. 이 다음 예는 기기가 대기하는 즉시 기기와의 연결을 있습니다.

Swift

extension Example: DiscovererDelegate {
  func discoverer(
    _ discoverer: Discoverer, didFind endpointID: EndpointID, with context: Data) {
    // An endpoint was found. We request a connection to it. The endpoint info can be used
    // to provide arbitrary information to the discovering device (e.g. device name or type).
    discoverer.requestConnection(to: endpointID, using: "My Device".data(using: .utf8)!)
  }

  func discoverer(_ discoverer: Discoverer, didLose endpointID: EndpointID) {
    // A previously discovered endpoint has gone away.
  }
}

사용 사례에 따라 탐색된 항목 목록을 대신 표시하고자 할 수 있습니다. 사용자에게 연결할 수 있으며, 사용자는 연결할 기기를 선택할 수 있습니다.

연결 수락 또는 거부

발견자가 광고주에 대한 연결을 요청하면 광고주는 를 통해 연결 요청에 대한 알림을 받게 됩니다. advertiser(_:didReceiveConnectionRequestFrom:with:connectionRequestHandler:) 대리자 메서드로 전달하세요.

Swift

extension Example: AdvertiserDelegate {
  func advertiser(
    _ advertiser: Advertiser, didReceiveConnectionRequestFrom endpointID: EndpointID,
    with context: Data, connectionRequestHandler: @escaping (Bool) -> Void) {
    // Call with `true` to accept or `false` to reject the incoming connection request.
    connectionRequestHandler(true)
  }
}

광고주가 수락하면 양측에 알림이 전달되고 connectionManager(_:didReceive:from:verificationHandler:)을(를) 통한 연결 대리자 메서드로 전달하세요.

앱에서 인증 코드를 받습니다. 이를 통해 사용자는 자신이 의도한 기기에 연결되고 있는지 확인합니다. 두 기기 모두 동일한 코드가 주어지면 임의의 짧은 문자열입니다. 그것은 당신에게 달려 있습니다. 확인하는 방법에 대해 알아보겠습니다. 일반적으로 그러려면 두 장치에 토큰을 표시하고 블루투스 페어링과 유사하게 사용자에게 직접 비교 및 확인 요청 대화상자

Swift

extension Example: ConnectionManagerDelegate {
  func connectionManager(
    _ connectionManager: ConnectionManager, didReceive verificationCode: String,
    from endpointID: EndpointID, verificationHandler: @escaping (Bool) -> Void) {
    // Optionally show the user the verification code. Your app should call this handler
    // with a value of `true` if the nearby endpoint should be trusted, or `false`
    // otherwise.
    verificationHandler(true)
  }
}

양측이 수락한 경우에만 연결이 완전히 설정됩니다. 만약 둘 다 거부되면 연결이 삭제됩니다.

위의 예는 둘 다에서 자동으로 연결을 수락하는 것을 보여줍니다. 그러나 사용 사례에 따라 이 선택사항을 어떤 식으로든 말이죠.