Giter VIP home page Giter VIP logo

Comments (2)

chrysn avatar chrysn commented on August 9, 2024

I'm not sure I get all you are asking (the "if the state changes [...] it will return the observe payload" is unclear to me), but let me try:

First, the state of the resource is not something that is directly accessible in CoAP, you can only query representations. It might help to think of a resource /temp that reflects a sensor's temperature. The temperature itself is practically continuous, and might be subtly different at any two instants you look at it.

A text/plain representation of it might just slowly jump between "cold", "medium" or "hot" (and emit an observation update whenever the respective thresholds are crossed), while a JSON representation might change on every 1/10th of a degree change.

Second, observation does not so much deal with change events, but with eventual consistency. This means that the individual notification does not matter (eg. it's common in CoAP to send notification events as a NON, and only occasionally send a CON to verify that the recipient is still alive), but only that "eventually", some time after the resource has reached a stable state, all observers see that state.

In practice, this means that network congestion can cause event to be dropped, as can proxies that decide you're sending too fast, or (although it's not done) even aiocoap might wait some time after you've declared the resource changed in some circumstances.

Finally, it's still the resource's call to decide when to offer updating a state at all -- for example, it'd be perfectly OK for a clock to always report time to the second, but still on observation only send an update once a minute. One possible way of indicating the client's preferences in that matter is described in draft-ietf-core-dynlink, but in the end, it's up to the resource when to send.

(@ChangSam – pinging you as i can't subscribe you to this question).

from aiocoap.

chrysn avatar chrysn commented on August 9, 2024

It appears the question is answered; feel free to reopen if anything was left unclear.

from aiocoap.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.