Matt Hamilton [Maryland] on Nostr: My Java -> Go code gen tool is nearing the first progress checkpoint. This Java: ...
My Java -> Go code gen tool is nearing the first progress checkpoint.
This Java:
public interface IHttpRequestResponse
{
byte[] getRequest();
...
Becomes:
struct IHttpRequestResponse {
}
(p *IHttpRequestResponse) GetRequest() []byte {
//TODO
}
...
Just need to build a Java RPC server and proto generator, then I'll be able to use Go instead of Java for this godforsaken app that only supports Java plugins.
I bet 5% of you understood this post. That's okay. I barely understand it.
This Java:
public interface IHttpRequestResponse
{
byte[] getRequest();
...
Becomes:
struct IHttpRequestResponse {
}
(p *IHttpRequestResponse) GetRequest() []byte {
//TODO
}
...
Just need to build a Java RPC server and proto generator, then I'll be able to use Go instead of Java for this godforsaken app that only supports Java plugins.
I bet 5% of you understood this post. That's okay. I barely understand it.