new Service(buildernon-null, rootnon-null, name, optionsopt)
Constructs a new Service.
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
builder |
ProtoBuf.Builder | Builder reference |
|
root |
ProtoBuf.Reflect.Namespace | Root |
|
name |
string | Service name |
|
options |
Object.<string, *> |
<optional> |
Options |
- Source:
Extends
Classes
Members
-
(non-null) builder :ProtoBuf.Builder
-
Builder reference.
Type:
- Inherited From:
- Source:
-
(non-null) children :Array.<ProtoBuf.Reflect.T>
-
Children inside the namespace.
Type:
- Array.<ProtoBuf.Reflect.T>
- Inherited From:
- Source:
-
className
-
- Source:
-
(nullable) clazz :function
-
Built runtime service class.
Type:
- function
- Source:
-
name :string
-
Object name in namespace.
Type:
- string
- Inherited From:
- Source:
-
(non-null) options :Object.<string, *>
-
Options.
Type:
- Object.<string, *>
- Inherited From:
- Source:
-
(nullable) parent :ProtoBuf.Reflect.T
-
Parent object.
Type:
- Inherited From:
- Source:
-
(non-null) syntax :string
-
Syntax level (e.g., proto2 or proto3).
Type:
- string
- Inherited From:
- Source:
Methods
-
addChild(child)
-
Adds a child to the namespace.
Parameters:
Name Type Description child
ProtoBuf.Reflect.T Child
- Inherited From:
- Source:
Throws:
-
If the child cannot be added (duplicate)
- Type
- Error
-
build(rebuildopt) → {function}
-
Builds the service and returns the runtime counterpart, which is a fully functional class.
Parameters:
Name Type Attributes Description rebuild
boolean <optional>
Whether to rebuild or not
- Source:
- See:
Throws:
-
If the message cannot be built
- Type
- Error
Returns:
Service class
- Type
- function
-
buildOpt() → {Object.<string, *>}
-
Builds the namespace's '$options' property.
- Inherited From:
- Source:
Returns:
- Type
- Object.<string, *>
-
fqn() → {string}
-
Returns the fully qualified name of this object.
- Inherited From:
- Source:
Returns:
Fully qualified name as of ".PATH.TO.THIS"
- Type
- string
-
getChild(nameOrId) → (nullable) {ProtoBuf.Reflect.T}
-
Gets a child by its name or id.
Parameters:
Name Type Description nameOrId
string | number Child name or id
- Inherited From:
- Source:
Returns:
The child or null if not found
- Type
- ProtoBuf.Reflect.T
-
getChildren(typeopt) → {Array.<ProtoBuf.Reflect.T>}
-
Returns an array of the namespace's children.
Parameters:
Name Type Attributes Description type
ProtoBuf.Reflect.T <optional>
Filter type (returns instances of this type only). Defaults to null (all children).
- Inherited From:
- Source:
Returns:
- Type
- Array.<ProtoBuf.Reflect.T>
-
getOption(nameopt) → {*|Object.<string, *>}
-
Gets the value assigned to the option with the specified name.
Parameters:
Name Type Attributes Description name
string <optional>
Returns the option value if specified, otherwise all options are returned.
- Inherited From:
- Source:
Returns:
null} Option value or NULL if there is no such option
- Type
- * | Object.<string, *>
-
qn(tnon-null) → {string}
-
Determines the shortest qualified name of the specified type, if any, relative to this namespace.
Parameters:
Name Type Description t
ProtoBuf.Reflect.T Reflection type
- Inherited From:
- Source:
Returns:
The shortest qualified name or, if there is none, the fqn
- Type
- string
-
resolve(qn, excludeNonNamespaceopt) → (nullable) {ProtoBuf.Reflect.Namespace}
-
Resolves a reflect object inside of this namespace.
Parameters:
Name Type Attributes Description qn
string | !Array.<string> Qualified name to resolve
excludeNonNamespace
boolean <optional>
Excludes non-namespace types, defaults to
false
- Inherited From:
- Source:
Returns:
The resolved type or null if not found
-
toString(includeClassopt)
-
Returns a string representation of this Reflect object (its fully qualified name).
Parameters:
Name Type Attributes Description includeClass
boolean <optional>
Set to true to include the class name. Defaults to false.
- Inherited From:
- Source:
Returns:
String representation