mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
50 lines
1.5 KiB
C++
50 lines
1.5 KiB
C++
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_dom_bluetooth_BluetoothSocketObserver_h
|
|
#define mozilla_dom_bluetooth_BluetoothSocketObserver_h
|
|
|
|
#include "BluetoothCommon.h"
|
|
#include <mozilla/ipc/UnixSocket.h>
|
|
|
|
using namespace mozilla::ipc;
|
|
|
|
BEGIN_BLUETOOTH_NAMESPACE
|
|
|
|
class BluetoothSocket;
|
|
|
|
class BluetoothSocketObserver
|
|
{
|
|
public:
|
|
virtual void ReceiveSocketData(BluetoothSocket* aSocket,
|
|
nsAutoPtr<UnixSocketRawData>& aMessage) = 0;
|
|
|
|
/**
|
|
* A callback function which would be called when a socket connection
|
|
* is established successfully. To be more specific, this would be called
|
|
* when socket state changes from CONNECTING/LISTENING to CONNECTED.
|
|
*/
|
|
virtual void OnConnectSuccess(BluetoothSocket* aSocket) = 0;
|
|
|
|
/**
|
|
* A callback function which would be called when BluetoothSocket::Connect()
|
|
* fails.
|
|
*/
|
|
virtual void OnConnectError(BluetoothSocket* aSocket) = 0;
|
|
|
|
/**
|
|
* A callback function which would be called when a socket connection
|
|
* is dropped. To be more specific, this would be called when socket state
|
|
* changes from CONNECTED/LISTENING to DISCONNECTED.
|
|
*/
|
|
virtual void OnDisconnect(BluetoothSocket* aSocket) = 0;
|
|
|
|
};
|
|
|
|
END_BLUETOOTH_NAMESPACE
|
|
|
|
#endif
|