File Information
Library: IoT/Devices
Package: Generated
Header: IoT/Devices/GNSSSensorServerHelper.h
Description
The interface for GNSS/GPS receivers.
Implementations of this class should also support the following (optional) properties for configuration:
- positionChangedPeriod (int): the minimum time interval in milliseconds between firings of the positionUpdate event.
- positionChangedDelta (int): the minimum distance (in meters) the receiver must move before the positionUpdate event is fired again.
- positionTimeout (int): Timeout in milliseconds after which the positionLost event is fired if no valid position has been received from the GNSS receiver.
Member Summary
Member Functions: createRemoteObject, enableEvents, registerObject, registerRemoteObject, shutdown, unregisterObject
Types Aliases
Service
using Service = IoT::Devices::GNSSSensor;
Constructors
GNSSSensorServerHelper
Creates a GNSSSensorServerHelper.
Destructor
~GNSSSensorServerHelper
Destroys the GNSSSensorServerHelper.
Member Functions
createRemoteObject
static Poco::AutoPtr < IoT::Devices::GNSSSensorRemoteObject > createRemoteObject(
Poco::SharedPtr < IoT::Devices::GNSSSensor > pServiceObject,
const Poco::RemotingNG::Identifiable::ObjectId & oid
);
Creates and returns a RemoteObject wrapper for the given IoT::Devices::GNSSSensor instance.
enableEvents
static void enableEvents(
const std::string & uri,
const std::string & protocol
);
Enables remote events for the RemoteObject identified by the given URI.
Events will be delivered using the Transport for the given protocol. Can be called multiple times for the same URI with different protocols.
registerObject
static std::string registerObject(
Poco::SharedPtr < IoT::Devices::GNSSSensor > pServiceObject,
const Poco::RemotingNG::Identifiable::ObjectId & oid,
const std::string & listenerId
);
Creates a RemoteObject wrapper for the given IoT::Devices::GNSSSensor instance and registers it with the ORB and the Listener instance uniquely identified by the Listener's ID.
Returns the URI created for the object.
registerRemoteObject
static std::string registerRemoteObject(
Poco::AutoPtr < IoT::Devices::GNSSSensorRemoteObject > pRemoteObject,
const std::string & listenerId
);
Registers the given RemoteObject with the ORB and the Listener instance uniquely identified by the Listener's ID.
Returns the URI created for the object.
shutdown
static void shutdown();
Removes the Skeleton for IoT::Devices::GNSSSensor from the ORB.
unregisterObject
static void unregisterObject(
const std::string & uri
);
Unregisters a service object identified by URI from the ORB.