Takes space name, replication count and list of field defs and returns a new SpaceDef instance.
Namespace: Com.Tibco.As.SpaceAssembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.4.0.001)
Syntax
C# |
---|
public static SpaceDef Create(
string spaceName,
int replication,
params FieldDef[] fieldDefs
) |
Visual Basic |
---|
Public Shared Function Create (
spaceName As String,
replication As Integer,
ParamArray fieldDefs As FieldDef()
) As SpaceDef |
Visual C++ |
---|
public:
static SpaceDef^ Create(
String^ spaceName,
int replication,
... array<FieldDef^>^ fieldDefs
) |
F# |
---|
static member Create :
spaceName : string *
replication : int *
fieldDefs : FieldDef[] -> SpaceDef
|
Return Value
Type:
SpaceDefThe new instance of SpaceDef
See Also