<!--
{
  "availability" : [
    "iOS: 16.0.0 -",
    "iPadOS: 16.0.0 -",
    "macCatalyst: 16.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "PushToTalk",
  "identifier" : "/documentation/PushToTalk/PTChannelManagerDelegate/incomingPushResult(channelManager:channelUUID:pushPayload:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Push to Talk"
    ],
    "preciseIdentifier" : "c:objc(pl)PTChannelManagerDelegate(im)incomingPushResultForChannelManager:channelUUID:pushPayload:"
  },
  "title" : "incomingPushResult(channelManager:channelUUID:pushPayload:)"
}
-->

# incomingPushResult(channelManager:channelUUID:pushPayload:)

Tells the observer that the app has a push available to handle.

```
func incomingPushResult(channelManager: PTChannelManager, channelUUID: UUID, pushPayload: [String : Any]) -> PTPushResult
```

## Parameters

`channelManager`

The channel manager.

`channelUUID`

The channel identifier.

`pushPayload`

The push payload metadata.

## Discussion

The system calls this method for each incoming push. Return a [`PTPushResult`](/documentation/PushToTalk/PTPushResult) as soon as possible and don’t block the thread. Perform network tasks — like downloading a speaker’s image or setting up a streaming network connection to a server — on a separate thread.

If the PTT channel transmission mode is [`PTTransmissionMode.halfDuplex`](/documentation/PushToTalk/PTTransmissionMode/halfDuplex), and the local participant is transmitting when the app receives a PTT notification, returning an active participant results in an error. End the local participant’s transmission by calling [`stopTransmitting(channelUUID:)`](/documentation/PushToTalk/PTChannelManager/stopTransmitting(channelUUID:)) before returning an active remote participant.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)