EventStoreServerSingleNode constructor

EventStoreServerSingleNode(
  1. EventStoreImage image, {
  2. bool secure = false,
  3. bool withTestData = false,
  4. int grpcPort = Defaults.GrpcPort,
  5. int gossipPort = Defaults.GossipPort,
  6. String hostCertificatePath = 'certs',
})

Implementation

EventStoreServerSingleNode(
  EventStoreImage image, {
  bool secure = false,
  bool withTestData = false,
  int grpcPort = Defaults.GrpcPort,
  int gossipPort = Defaults.GossipPort,
  String hostCertificatePath = 'certs',
}) : super(
        image: image,
        secure: secure,
        grpcPort: grpcPort,
        gossipPort: gossipPort,
        withTestData: withTestData,
        hostCertificatePath: hostCertificatePath,
      );