Spdk/python/spdk/rpc/notify.py

30 lines
629 B
Python
Raw Normal View History

# SPDX-License-Identifier: BSD-3-Clause
# Copyright (C) 2018 Intel Corporation.
# All rights reserved.
def notify_get_types(client):
return client.call("notify_get_types")
def notify_get_notifications(client,
id=None,
max=None):
"""
Args:
id First ID to start fetching from
max Maximum number of notifications to return in response
Return:
Notifications array
"""
params = {}
if id:
params['id'] = id
if max:
params['max'] = max
return client.call("notify_get_notifications", params)