Create a Replace Record Operation.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function Rpl( _ 
   ByVal rec As NetricsRecord _ 
) As NetricsRecOp
C#
public static NetricsRecOp Rpl(
   NetricsRecord rec
)
C++
public:
 static NetricsRecOp Rpl(
   NetricsRecord rec
)
J#
public static NetricsRecOp Rpl(
   NetricsRecord rec
)
JScript
public static  function Rpl(
   rec : NetricsRecord
) : NetricsRecOp

Parameters

rec
the record to be replaced.

Return Value

a new NetricsRecOp object.

Remarks

A record replace operation replaces an existing record in the ibi Patterns table with a new version. It is an error if a record with the same key doesn't exist. If the do max work flag is set the error is quietly ignored.

See Also