Search Results

442 résultats trouvés Page 11 / 45
FAQ
Voir

How do you use the `addNodeStatus` action in CASL?

The CASL syntax for the action is: `session.addNodeStatus ;`

FAQ
Voir

What is the syntax for the `addNodeStatus` action in Python?

In Python, you can call the action using the following syntax: `results=s.session.addNodeStatus()`

FAQ
Voir

What is the syntax for the `addNodeStatus` action in R?

The R syntax for the `addNodeStatus` action is: `results

FAQ
Voir

How can I execute the `addNodeStatus` action in Lua?

The Lua syntax for this action is: `results, info = s:session_addNodeStatus{}`

FAQ
Voir

How can I make a table available to other sessions?

By setting the 'promote' parameter to TRUE, the table is added with a global scope, making it accessible to other sessions, provided they have the necessary permissions. The target caslib must also have a global scope.

FAQ
Voir

What parameter is required for the `batchresults` action?

The `batchresults` action requires the `uuid` parameter, which is a string that specifies the UUID of the session.

FAQ
Voir

How do I use the `batchresults` action in CASL?

To use the `batchresults` action in CASL, you would call `session.batchresults` and provide the session's UUID. For example: `session.batchresults / uuid="your-session-uuid";`.

FAQ
Voir

Can I switch an action in a different session to batch mode?

Yes, the example provided in the documentation, 'Switch an Action Running in Another Session to Batch Mode,' indicates that you can use the `batchresults` action to change the mode of an action in another session by specifying its UUID.

FAQ
Voir

What is the primary purpose of the checkOutObject action?

The checkOutObject action reserves an object and all of its children for update exclusively by the current client session. It can also prevent an object and its parents from being checked out exclusively by another session when using the 'Shared' checkOutType.

FAQ
Voir

What are the available types for the 'checkOutType' parameter?

The 'checkOutType' parameter accepts two values: "EXCLUSIVE" and "SHARED". "EXCLUSIVE" is the default and ensures only the current session can update the object. "SHARED" prevents other sessions from getting an exclusive lock on the object and its parents, without locking the object itself.