question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Is there a more elegant way to define "no result" for a method

See original GitHub issue

In my API I have some functions that do not return a result. I implement this by responding with a “null” value (but a “true” is just as good). The reason being that anything apart from success is an error, so I don’t need to return anything apart from “there is no error”.

E.g. (In pure JSON-RPC)

--> {"jsonrpc": "2.0", "method": "reboot", "id": 1}
<-- {"jsonrpc": "2.0", "result": null, "id": 1}

In the OpenRPC 1.2.6 specification however, a “result” property is required on a method, so I have to provide a name and a description etc, and yes I know I can use a $ref to a ‘#/components/null_result’ to save typing, but it would be much easier to not have “result” required, implying “null”.

Note: I am not trying to define JSON-RPC Notifications (no “id” field, no response expected, etc.) just allowing reasonably smart tooling to spot that there is no “result” defined, and just expect/respond with “null”.

My question is: are the spec authors happy with the status-quo of requiring an API to define a “null_result” component?

Issue Analytics

  • State:open
  • Created 3 years ago
  • Reactions:2
  • Comments:11 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
zcstarrcommented, May 17, 2022

@ghostbuster91

According to the jsonrpc spec notification is just a request without the id field. Every jsonrpc method should handle both regular requests and notifications.

The suggestion I was trying to describe was a potential change to allow us to distinguish if a method is a notification or not. Currently our spec requires result field and does not have any affordance for saying something is not expecting a result at all and is therefore a notification.

In case of rest api we often signal that by an empty response with 404 error code. While jsonrpc can be used over http it doesn’t have to and so we don’t have the access on the protocol layer to http codes.

Agreed definitely don’t want to encode ay protocol specific things into the specification. Your options which is throw an error in the JsonRPC specified way or return result null are both valid options.

I would probably error on the side of specificity, returning null result, and reserve error for a case that represents an error. But that’s in the eyes of the api implementor.

Thanks for the heads up. I’d say file an issue on open-rpc playground and we’ll take a look at it over there. It should be supported, and if it’s not or erroring out in some way, happy to take a look and patch it up 😄.

1reaction
stale[bot]commented, Jan 24, 2021

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Is there an elegant way to make every method in a class start ...
I don't know about elegant, but here is a working implementation using Java's built-in java.lang.reflect.Proxy that enforces that all method ...
Read more >
When to Use a List Comprehension in Python
Python list comprehensions make it easy to create lists while performing sophisticated filtering, mapping, and conditional logic on their members.
Read more >
Python Parentheses Cheat Sheet - Edlitera
Master how parentheses work in Python to learn to code faster. ... Calling on the name of a function without following it by...
Read more >
The Singleton Pattern - Python Design Patterns
Python is more elegant, and lets a class continue to support the normal syntax ... There was no way to override the meaning...
Read more >
3 Ways To Iterate Over Python Dictionaries Using For Loops
However, the most “pythonic” and elegant way to iterate through a dictionary is by using the .items() method, that returns a view of ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found