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.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 

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

Type: SpaceDef
The new instance of SpaceDef

See Also