Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(fcm): SendEach and SendEachForMulticast for FCM batch send #552

Merged
merged 5 commits into from
Apr 21, 2023

Commits on Apr 5, 2023

  1. Implement SendEach, SendEachDryRun, SendEachForMulticast, (#544)

    `SendEachForMulticastDryRun`
    
    1. Add `SendEach`, `SendEachDryRun`, `SendEachForMulticast`,
       `SendEachForMulticastDryRun`
    2. Deprecate `SendAll`, `SendAllDryRun`, `SendMulticast`,
       `SendMulticastDryRun`
    
    `SendEach` vs `SendAll`
    1. `SendEach` sends one HTTP request to V1 Send endpoint for each
        message in the array.
       `SendAll` sends only one HTTP request to V1 Batch Send endpoint
        to send all messages in the array.
    2. `SendEach` calls fcmClient.Send to send each message
        and constructs a SendResponse with the returned message id or error.
        `SendEach` uses sync.WaitGroup to execute all fcmClient.Send calls
        asynchronously and wait for all of them to complete and construct a
        BatchResponse with all SendResponses.
        Therefore, unlike `SendAll`, `SendEach` does not always returns
        an error for a total failure. It can also return a `BatchResponse`
        with only errors in it.
    
    `SendEachForMulticast` calls `SendEach` under the hood.
    Doris-Ge committed Apr 5, 2023
    Configuration menu
    Copy the full SHA
    650c1f2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd9bf1e View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2023

  1. Configuration menu
    Copy the full SHA
    e73585b View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2023

  1. Configuration menu
    Copy the full SHA
    384c4cd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8b08af1 View commit details
    Browse the repository at this point in the history