Waher.Networking.MQTT
by: Peter Waher
- 499 total downloads
- Latest version: 3.0.0
Library that provides a simple MQTT client.
Waher.Networking.XMPP
by: Peter Waher
- 1.64k total downloads
- Latest version: 4.0.0
Class library for communication using the XMPP protocol. Library contains both client-to-server and component-to-server communication classes. Classes can be extended freely by external modules. XMPP Extensions supported by the library by default include:
XEP-0004: Data Forms
XEP-0030: Service Discovery
XEP-0047: In-band Bytestreams
XEP-0049: Private XML Storage
XEP-0055: Jabber Search
XEP-0059: Result Set Management
XEP-0068: Field Standardization for Data Forms
XEP-0077: In-band Registration
XEP-0092: Software Version
XEP-0114: Jabber Component Protocol
XEP-0115: Entity Capabilities
XEP-0122: Data Forms Validation
XEP-0128: Service Discovery Extensions
XEP-0141: Data Forms Layout
XEP-0172: User Nickname
XEP-0184: Message Delivery Receipts
XEP-0191: Blocking Command
XEP-0199: XMPP Ping
XEP-0221: Data Forms Media Element
XEP-0231: Bits of Binary
XEP-0331: Data Forms - Color Field Types
XEP-0336: Data Forms - Dynamic Forms
XEP-0348: Signing Forms
XEP-0363: HTTP File Upload
XEP-0377: Spam Reporting
Support for other extensions is provided by separate nuget packages. See: https://waher.se/IoTGateway/Libraries.md#networking
Waher.Networking.XMPP.Avatar
by: Peter Waher
- 331 total downloads
- Latest version: 3.0.0
Class library adding support for managing avatars to the XMPP Client library defined in Waher.Networking.XMPP.
Waher.Networking.XMPP.Concentrator
by: Peter Waher
- 1.171k total downloads
- Latest version: 4.2.3
Implements the XMPP IoT concentrator as defined by the Neuro-Foundation (neuro-foundation.io). The concentrator interface allows a device to manage a set of internal virtual devices, all sharing the same XMPP connection.
Waher.Networking.XMPP.Control
by: Peter Waher
- 494 total downloads
- Latest version: 4.0.0
Implements the XMPP IoT control extesion as defined by the Neuro-Foundation (neuro-foundation.io).
Waher.Networking.XMPP.PEP
by: Peter Waher
- 412 total downloads
- Latest version: 3.0.0
Class library adding support for the Personal Eventing Protocol (XEP-0163) to the XMPP Client library defined in Waher.Networking.XMPP. Other related extensions supported include:
XEP-0080: User Location
XEP-0084: User Avatar
XEP-0107: User Mood
XEP-0108: User Activity
XEP-0118: User Tune
Waher.Networking.XMPP.Provisioning
by: Peter Waher
- 899 total downloads
- Latest version: 4.0.0
Implements the XMPP IoT provisioning extesion as defined by the Neuro-Foundation (neuro-foundation.io).
Waher.Networking.XMPP.PubSub
by: Peter Waher
- 409 total downloads
- Latest version: 3.0.0
Class library adding support for the Publish/Subscribe extension (XEP-0060) to the XMPP Client library defined in Waher.Networking.XMPP.
Waher.Networking.XMPP.Sensor
by: Peter Waher
- 760 total downloads
- Latest version: 4.0.0
Implements the XMPP IoT sensor data extesion as defined by the Neuro-Foundation (neuro-foundation.io).
Waher.Networking.XMPP.Synchronization
by: Peter Waher
- 361 total downloads
- Latest version: 4.0.0
Implements the clock synchronization extesion as defined by the Neuro-Foundation (neuro-foundation.io).
Waher.Persistence
by: Peter Waher
- 998 total downloads
- Latest version: 1.16.0
The Waher.Persistence project provides the basic architecture and framework for accessing objects in an object database, based solely on meta-data provided through the corresponding class definitions.
Waher.Persistence.Files
by: Peter Waher
- 2.255k total downloads
- Latest version: 1.16.0
Library that provides an object database that stores objects in local AES-256 encrypted files. Storage, indices, searching and retrieval is based solely on meta-data provided through the corresponding class definitions. Object serializers are created dynamically. Dynamic code is compiled.
Waher.Persistence.Serialization.Compiled
by: Peter Waher
- 579 total downloads
- Latest version: 1.11.0
Library that serializes objects to binary form using meta-data provided through the corresponding class definitions. Object serializers are created dynamically. Dynamic code is compiled. Compatible with Waher.Persistence.Serialization.
Waher.Persistence.XmlLedger
by: Peter Waher
- 133 total downloads
- Latest version: 1.2.3
The Waher.Persistence.XmlLedger project provides a simple ledger that records anything that happens in the database to XML files in the program data folder. Files are kept of a configurable amount of time.
Waher.Runtime.Cache
by: Peter Waher
- 217 total downloads
- Latest version: 2.1.2
Class library that helps with caching of objects in runtime environments.
Waher.Runtime.Collections
by: Peter Waher
- 69 total downloads
- Latest version: 1.0.3
Class library that contains specialized collections for increased performance.
For more information about ChunkedList, including benchmarking & performance:
https://lab.tagroot.io/Community/Post/ChunkedList
Waher.Runtime.Console
by: Peter Waher
- 76 total downloads
- Latest version: 1.2.0
Class library that helps with queueing and serialization of input and output to and from the Console in a multi-threaded environment, avoiding dead-locks when console is locked.
Waher.Runtime.Counters
by: Peter Waher
- 77 total downloads
- Latest version: 2.0.0
Class library that helps with counting events in runtime environments in a persistent and efficient and platform-independent manner.
Waher.Runtime.HashStore
by: Peter Waher
- 27 total downloads
- Latest version: 1.0.2
Class library that helps applications maintain receipts in persisted hash stores. Hash values can be easily stored in different realms, and can later be used to easily verify the existence of the hash. Hashes can also be distributed via distributed ledgers.
Waher.Runtime.Inventory
by: Peter Waher
- 802 total downloads
- Latest version: 1.4.5
Class library that keeps an inventory of types and interfaces available in your code. It also provides a means to access available types given an interface, and can find the best implementation to process a task or item. It can be used to implement an Inversion of Control Pattern, and helps instantiate interfaces, abstract classes and normal classes, including recursively instantiating constructor arguments. Handles singleton types.