Takes space name, replication count and list of field defs and returns a new SpaceDef instance.

Namespace: Com.Tibco.As.Space
Assembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.1.0.0 (2.1)

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
)

Parameters

spaceName
Type: System..::..String
Space name
replication
Type: System..::..Int32
Degree of replication
fieldDefs
Type: array<Com.Tibco.As.Space..::..FieldDef>[]()[][]
Array List of field defs

Return Value

The new instance of SpaceDef

See Also