"""Collection of options that specifies session behaviors related to gRPC."""
from enum import IntEnum
[docs]
class SessionInitializationBehavior(IntEnum):
AUTO = 0
r"""
The NI gRPC Device Server will attach to an existing session with the specified name if it exists, otherwise the server
will initialize a new session.
Note:
When using the Session as a context manager and the context exits, the behavior depends on what happened when the constructor
was called. If it resulted in a new session being initialized on the NI gRPC Device Server, then it will automatically close the
server session. If it instead attached to an existing session, then it will detach from the server session and leave it open.
"""
INITIALIZE_SERVER_SESSION = 1
r"""
Require the NI gRPC Device Server to initialize a new session with the specified name.
Note:
When using the Session as a context manager and the context exits, it will automatically close the
server session.
"""
ATTACH_TO_SERVER_SESSION = 2
r"""
Require the NI gRPC Device Server to attach to an existing session with the specified name.
Note:
When using the Session as a context manager and the context exits, it will detach from the server session
and leave it open.
"""
[docs]
class GrpcSessionOptions(object):
"""Collection of options that specifies session behaviors related to gRPC."""
[docs]
def __init__(
self,
grpc_channel,
session_name,
*,
initialization_behavior=SessionInitializationBehavior.AUTO
):
r"""Collection of options that specifies session behaviors related to gRPC.
Creates and returns an object you can pass to a Session constructor.
Args:
grpc_channel (grpc.Channel): Specifies the channel to the NI gRPC Device Server.
session_name (str): User-specified name that identifies the driver session on the NI gRPC Device
Server. This is different from the resource name parameter many APIs take as a separate
parameter. Specifying a name makes it easy to share sessions across multiple gRPC clients.
You can use an empty string if you want to always initialize a new session on the server.
To attach to an existing session, you must specify the session name it was initialized with.
initialization_behavior (enum): Specifies whether it is acceptable to initialize a new
session or attach to an existing one, or if only one of the behaviors is desired.
The driver session exists on the NI gRPC Device Server.
"""
self.grpc_channel = grpc_channel
self.session_name = session_name
self.initialization_behavior = initialization_behavior