blob: 76f6c30c3eb7e777d7e105d5c6f2565ebf51d61a [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_INVALIDATION_IMPL_NETWORK_CHANNEL_H_
#define COMPONENTS_INVALIDATION_IMPL_NETWORK_CHANNEL_H_
#include "base/callback.h"
namespace syncer {
using MessageCallback =
base::RepeatingCallback<void(const std::string& payload,
const std::string& private_topic,
const std::string& public_topic,
const std::string& version)>;
using TokenCallback = base::RepeatingCallback<void(const std::string& message)>;
/*
* Interface specifying the functionality of the network, required by
* invalidation client.
*/
class NetworkChannel {
public:
virtual ~NetworkChannel() {}
/* Sets the receiver to which messages from the data center will be delivered.
*/
virtual void SetMessageReceiver(MessageCallback incoming_receiver) = 0;
/* Sets the receiver to which FCM registration token will be delivered.
*/
virtual void SetTokenReceiver(TokenCallback incoming_receiver) = 0;
};
} // namespace syncer
#endif // COMPONENTS_INVALIDATION_IMPL_NETWORK_CHANNEL_H_