Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(microservices): update server properties to protected #10371

Merged
merged 1 commit into from Oct 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/microservices/server/server-mqtt.ts
Expand Up @@ -29,8 +29,9 @@ let mqttPackage: any = {};
export class ServerMqtt extends Server implements CustomTransportStrategy {
public readonly transportId = Transport.MQTT;

protected mqttClient: MqttClient;

private readonly url: string;
private mqttClient: MqttClient;

constructor(private readonly options: MqttOptions['options']) {
super();
Expand Down
3 changes: 2 additions & 1 deletion packages/microservices/server/server-tcp.ts
Expand Up @@ -28,10 +28,11 @@ import { Server } from './server';
export class ServerTCP extends Server implements CustomTransportStrategy {
public readonly transportId = Transport.TCP;

protected server: NetSocket;

private readonly port: number;
private readonly host: string;
private readonly socketClass: Type<TcpSocket>;
private server: NetSocket;
private isExplicitlyTerminated = false;
private retryAttemptsCount = 0;

Expand Down