mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-26 15:35:55 +00:00
43 lines
1.7 KiB
Go
43 lines
1.7 KiB
Go
package rpcclient
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/app/appmessage"
|
|
routerpkg "github.com/kaspanet/kaspad/infrastructure/network/netadapter/router"
|
|
"github.com/pkg/errors"
|
|
"github.com/kaspanet/kaspad/app/rpc/rpccontext"
|
|
)
|
|
|
|
// RegisterForVirtualSelectedParentChainChangedNotifications sends an RPC request respective to the function's name and returns the RPC server's response.
|
|
// Additionally, it starts listening for the appropriate notification using the given handler function
|
|
func (c *RPCClient) RegisterForVirtualSelectedParentChainChangedNotifications(includeAcceptedTransactionIDs bool,
|
|
onChainChanged func(notification *appmessage.VirtualSelectedParentChainChangedNotificationMessage)) error {
|
|
|
|
err := c.rpcRouter.outgoingRoute().Enqueue(
|
|
appmessage.NewNotifyVirtualSelectedParentChainChangedRequestMessage(includeAcceptedTransactionIDs, rpccontext.DefaultNotificationId))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
response, err := c.route(appmessage.CmdNotifyVirtualSelectedParentChainChangedResponseMessage).DequeueWithTimeout(c.timeout)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
notifyChainChangedResponse := response.(*appmessage.NotifyVirtualSelectedParentChainChangedResponseMessage)
|
|
if notifyChainChangedResponse.Error != nil {
|
|
return c.convertRPCError(notifyChainChangedResponse.Error)
|
|
}
|
|
spawn("RegisterForVirtualSelectedParentChainChangedNotifications", func() {
|
|
for {
|
|
notification, err := c.route(appmessage.CmdVirtualSelectedParentChainChangedNotificationMessage).Dequeue()
|
|
if err != nil {
|
|
if errors.Is(err, routerpkg.ErrRouteClosed) {
|
|
break
|
|
}
|
|
panic(err)
|
|
}
|
|
ChainChangedNotification := notification.(*appmessage.VirtualSelectedParentChainChangedNotificationMessage)
|
|
onChainChanged(ChainChangedNotification)
|
|
}
|
|
})
|
|
return nil
|
|
}
|