Simon Bernard

Results 921 comments of Simon Bernard

Still work in progress but my first working version is available at : https://github.com/eclipse-leshan/leshan/pull/1528

About tooling, it exist this maven plugin : https://revapi.org/revapi-site/main/index.html

> When needed, we can switch to be more strict with API changes. Just to clarify, does it mean that :point_up: is still true ? or that means :point_up: is...

Not directly linked but not sure to get why `isPrefixed` is **transient** ? :thinking: ```java static final class RequestMatcher { private final Method method; private final String uriPath; private transient...

Oh I was thinking `transient` was about Java Serialization. Not sure to know how this is related to `equals` ? Maybe something related to IDE code generation ?

Oh I didn't know about `EqualsVerifier` maybe this is a library we should use in Leshan :thinking: About transient, I read documentation : https://jqno.nl/equalsverifier/manual/ignoring-fields/#transient-fields and they also talk about serialization...

thx :pray: 1. I don't know if I really need to have several socket by `coapserver` :grimacing:. What I know for sure is that 1 LWM2M server should have several...

Some more questions about observe. I think this will be one of the big part. Considering observe, a LWM2M server acts as a CoAP client (it sends request and receive...

I added a TokenGenerator to my experimentation, for now I go with a "not so java-coap" spirit way. (See https://github.com/eclipse/leshan/commit/914f0d48c2072518a76a454fd0adda7c1d533457). I guess it's OK for our POC. But just by...

**o1.** I will try to play with your example then I let you know if 1 observation consumer seems better to me. **o2.** It seems that users like observe feature...