SpaceDefCreate Method (String, Int32, IListFieldDef) |
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.1.5.12)
Syntaxpublic static SpaceDef Create(
string spaceName,
int replication,
IList<FieldDef> fieldDefs
)
Public Shared Function Create (
spaceName As String,
replication As Integer,
fieldDefs As IList(Of FieldDef)
) As SpaceDef
public:
static SpaceDef^ Create(
String^ spaceName,
int replication,
IList<FieldDef^>^ fieldDefs
)
static member Create :
spaceName : string *
replication : int *
fieldDefs : IList<FieldDef> -> SpaceDef
Parameters
- spaceName
- Type: SystemString
Space name - replication
- Type: SystemInt32
Degree of replication - fieldDefs
- Type: System.Collections.GenericIListFieldDef
Array List of field defs
Return Value
Type:
SpaceDefThe new instance of SpaceDef
See Also