You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Internal hopsworks exception related to aliases.
33
+
34
+
Ideally, this exception should never happen, as it means misconfiguration of aliases, for example, if a public alias is requested for a method of a class.
Note that it is impossible to create an alias for a variable, i.e., it is impossible to make a change of a variable in one module to propogate to another variable in another module.
107
128
108
129
# Arguments
109
130
paths: the import paths under which the entity is publically avilable; effectively results in generation of aliases in all of the paths for the entity.
110
131
as_alias: make the alias of the specified name.
132
+
deprecated: make the alias deprected; use of the entity outside hopsworks will print a warning, saying that it is going to be removed from the public API in one of the future releases. See `deprecated` decorator for the implementation of construction of the deprecated objects.
133
+
available_until: the first hopsworks release in which the entity will become unavailable, defaults to `None`; if the release is known, it is reoprted to the external user in the warning and `deprected` becomes set up.
111
134
"""
112
135
136
+
ifavailable_until:
137
+
deprecated=True
138
+
113
139
defdecorator(symbol):
114
140
ifnothasattr(symbol, "__qualname__"):
115
-
raiseInternalError("The symbol should be importable to be public.")
141
+
raiseInternalAliasError("The symbol should be importable to be public.")
"""Publish all of the names defined inside this context.
152
+
defpublish(*paths: str):
153
+
"""Publish all of the names defined in this module after this call.
126
154
127
155
Since `public` decorator works only for classes and functions, this context should be used for public constants.
128
156
It is also useful for bulk publishing.
129
157
Note that it is impossible to create an alias for a variable, i.e., it is impossible to make a change of a variable in one module to propogate to another variable in another module.
130
158
159
+
In case you need to publish something from the begining of a module, use `Publisher`.
160
+
161
+
If you need to deprecate an alias, use `public` instead.
162
+
131
163
# Arguments
132
164
paths: the import paths under which the names declared in this context will be publically available; effectively results in generation of aliases in all of the paths for all the names declared in the context.
"""Publish all of the names defined inside this context.
149
174
150
-
defdeprecated_public(
151
-
*paths: str,
152
-
available_until: Optional[str] =None,
153
-
as_alias: Optional[str] =None,
154
-
):
155
-
"""Make public aliases as a deprecated versions of a class or a function.
175
+
This class is intended for bulk publishing of entitities which are to be declared in the begining of a module, so that publish is not usable; in other cases, use publish instead.
176
+
Note that it is impossible to create an alias for a variable, i.e., it is impossible to make a change of a variable in one module to propogate to another variable in another module.
156
177
157
-
Use of the entity outside hopsworks will print a warning, saying that it is going to be removed from the public API in one of the future releases.
158
-
See `deprecated` decorator for the implementation of construction of the deprecated objects.
178
+
If you need to deprecate an alias, use `public` instead.
159
179
160
180
# Arguments
161
-
paths: the import paths under which the entity is publically avilable; effectively results in generation of deprecated aliases in all of the paths for the entity.
162
-
available_until: the first hopsworks release in which the entity will become unavailable, defaults to `None`; if the release is known, it is reoprted to the external user in the warning.
163
-
as_alias: make the alias of the specified name.
181
+
paths: the import paths under which the names declared in this context will be publically available; effectively results in generation of aliases in all of the paths for all the names declared in the context.
164
182
"""
165
183
166
-
defdecorator(symbol):
167
-
ifnothasattr(symbol, "__qualname__"):
168
-
raiseInternalError("The symbol should be importable to be public.")
0 commit comments